Cubic lattice reorganisation in SPH#

The cubic lattice is not stable in SPH, this test is a way to explore that.

 9 import os
10 import random
11
12 import matplotlib
13 import matplotlib.pyplot as plt
14 import numpy as np
15 from mpl_toolkits.mplot3d import Axes3D
16
17 import shamrock
18
19 # If we use the shamrock executable to run this script instead of the python interpreter,
20 # we should not initialize the system as the shamrock executable needs to handle specific MPI logic
21 if not shamrock.sys.is_initialized():
22     shamrock.change_loglevel(1)
23     shamrock.sys.init("0:0")

Setup parameters

29 gamma = 5.0 / 3.0
30 rho_g = 1
31 P_0 = 1.0
32 u_0 = P_0 / ((gamma - 1.0) * rho_g)
33 perturb = 3e-3
34
35 bmin = (-0.6, -0.6, -0.6)
36 bmax = (0.6, 0.6, 0.6)
37
38 dump_folder = "_to_trash"
39 sim_name = "cubic_reorganisation"
40
41 N_side = 8
42 scheduler_split_val = int(2e7)
43 scheduler_merge_val = int(1)
44
45 os.makedirs(dump_folder, exist_ok=True)

Deduced quantities

50 xm, ym, zm = bmin
51 xM, yM, zM = bmax
52 vol_b = (xM - xm) * (yM - ym) * (zM - zm)
53
54 dr = (bmax[0] - bmin[0]) / N_side
55
56 pmass = -1

Setup

 61 ctx = shamrock.Context()
 62 ctx.pdata_layout_new()
 63
 64 model = shamrock.get_Model_SPH(context=ctx, vector_type="f64_3", sph_kernel="M6")
 65
 66 cfg = model.gen_default_config()
 67 cfg.set_artif_viscosity_VaryingCD10(
 68     alpha_min=0.0, alpha_max=1, sigma_decay=0.1, alpha_u=1, beta_AV=2
 69 )
 70 cfg.set_boundary_periodic()
 71 cfg.set_eos_adiabatic(gamma)
 72 cfg.print_status()
 73 model.set_solver_config(cfg)
 74 model.init_scheduler(scheduler_split_val, scheduler_merge_val)
 75
 76
 77 model.resize_simulation_box(bmin, bmax)
 78
 79 setup = model.get_setup()
 80 gen = setup.make_generator_lattice_cubic(dr, bmin, bmax)
 81 setup.apply_setup(gen, insert_step=scheduler_split_val)
 82
 83
 84 xc, yc, zc = model.get_closest_part_to((0, 0, 0))
 85
 86 if shamrock.sys.world_rank() == 0:
 87     print("closest part to (0,0,0) is in :", xc, yc, zc)
 88
 89
 90 vol_b = (xM - xm) * (yM - ym) * (zM - zm)
 91
 92 totmass = rho_g * vol_b
 93
 94 pmass = model.total_mass_to_part_mass(totmass)
 95
 96 model.set_value_in_a_box("uint", "f64", u_0, bmin, bmax)
 97
 98 tot_u = pmass * model.get_sum("uint", "f64")
 99 if shamrock.sys.world_rank() == 0:
100     print("total u :", tot_u)
101
102 model.set_particle_mass(pmass)
103
104 model.set_cfl_cour(0.1)
105 model.set_cfl_force(0.1)
106
107
108 def periodic_modulo(x, xmin, xmax):
109     tmp = x - xmin
110     tmp = tmp % (xmax - xmin)
111     tmp += xmin
112     return tmp
113
114
115 random.seed(111)
116
117
118 def perturb_func(r):
119     x, y, z = r
120     x += perturb * (random.random() - 0.5) * 2
121     y += perturb * (random.random() - 0.5) * 2
122     z += perturb * (random.random() - 0.5) * 2
123
124     x = periodic_modulo(x, xm, xM)
125     y = periodic_modulo(y, ym, yM)
126     z = periodic_modulo(z, zm, zM)
127
128     return (x, y, z)
129
130
131 model.remap_positions(perturb_func)
----- SPH Solver configuration -----
[
    {
        "artif_viscosity": {
            "alpha_max": 1.0,
            "alpha_min": 0.0,
            "alpha_u": 1.0,
            "beta_AV": 2.0,
            "sigma_decay": 0.1,
            "type": "varying_cd10"
        },
        "boundary_config": {
            "bc_type": "periodic"
        },
        "cfl_config": {
            "cfl_cour": 0.0,
            "cfl_force": 0.0,
            "cfl_multiplier_stiffness": 2.0,
            "eta_sink": 0.05
        },
        "combined_dtdiv_divcurlv_compute": false,
        "debug_dump_filename": "",
        "do_debug_dump": false,
        "enable_particle_reordering": false,
        "eos_config": {
            "Tvec": "f64_3",
            "eos_type": "adiabatic",
            "gamma": 1.6666666666666667
        },
        "epsilon_h": 1e-06,
        "ext_force_config": {
            "force_list": []
        },
        "gpart_mass": 0.0,
        "h_iter_per_subcycles": 50,
        "h_max_subcycles_count": 100,
        "htol_up_coarse_cycle": 1.1,
        "htol_up_fine_cycle": 1.1,
        "kernel_id": "M6<f64>",
        "mhd_config": {
            "mhd_type": "none"
        },
        "particle_killing": [],
        "particle_reordering_step_freq": 1000,
        "save_dt_to_fields": false,
        "scheduler_config": {
            "merge_load_value": 0,
            "split_load_value": 0
        },
        "self_grav_config": {
            "softening_length": 1e-09,
            "softening_mode": "plummer",
            "type": "none"
        },
        "show_ghost_zone_graph": false,
        "show_neigh_stats": false,
        "smoothing_length_config": {
            "type": "density_based"
        },
        "time_state": {
            "cfl_multiplier": 0.01,
            "dt_sph": 0.0,
            "time": 0.0
        },
        "tree_reduction_level": 3,
        "type_id": "sycl::vec<f64,3>",
        "unit_sys": null,
        "use_two_stage_search": true
    }
]
------------------------------------
SPH setup: generating particles ...
SPH setup: Nstep = 512 ( 5.1e+02 ) Ntotal = 512 ( 5.1e+02 ) rate = 5.202951e+05 N.s^-1
SPH setup: the generation step took : 0.001830837 s
SPH setup: final particle count = 512 begining injection ...
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (66.3%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1794.00 ns (0.3%)
   patch tree reduce : 1092.00 ns (0.2%)
   gen split merge   : 731.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 546.67 us  (97.8%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.6%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (67.7%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (0.3%)
   patch tree reduce : 591.00 ns  (0.1%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 260.00 ns  (0.1%)
   LB compute        : 456.90 us  (98.1%)
   LB move op cnt    : 0
   LB apply          : 2.17 us    (0.5%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (67.1%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1513.00 ns (0.3%)
   patch tree reduce : 491.00 ns  (0.1%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 280.00 ns  (0.1%)
   LB compute        : 440.92 us  (98.2%)
   LB move op cnt    : 0
   LB apply          : 2.17 us    (0.5%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
SPH setup: injected          512 / 512 => 100.0% | ranks with patchs = 1 / 1  <- global loop ->
SPH setup: the injection step took : 0.009901532000000001 s
Info: injection perf report:                                                    [SPH setup][rank=0]
+======+====================+=======+=============+=============+=============+
| rank | rank get (sum/max) |  MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+====================+=======+=============+=============+=============+
| 0    |      0.00s / 0.00s | 0.00s |   0.9% 0.0% |     1.00 GB |     5.04 MB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 0.013426150000000001 s
closest part to (0,0,0) is in : 0.0 0.0 0.0
total u : 2.5919999999999996
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 18.66 us   (52.9%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.83 us    (0.4%)
   patch tree reduce : 10.96 us   (1.1%)
   gen split merge   : 771.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.1%)
   LB compute        : 950.68 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.4%)

Single timestep to iterate the smoothing length

135 model.timestep()
136
137 hmean = None
138 scatter_range = None
139
140
141 def make_plot(model, iplot):
142     # %%
143     # Recover data
144     dat = ctx.collect_data()
145
146     min_hpart = np.min(dat["hpart"])
147     max_hpart = np.max(dat["hpart"])
148     mean_hpart = np.mean(dat["hpart"])
149
150     global hmean
151     if hmean is None:
152         hmean = mean_hpart
153
154     global scatter_range
155     if scatter_range is None:
156         scatter_range = (min_hpart, max_hpart)
157
158     print(f"hpart min={min_hpart} max={max_hpart} delta={max_hpart - min_hpart}")
159
160     # Compute all pairwise distances
161     from scipy.spatial.distance import pdist
162
163     pairwise_distances = pdist(dat["xyz"])  # Returns condensed distance matrix
164     print(f"Number of particle pairs: {len(pairwise_distances)}")
165     print(
166         f"Distance min={np.min(pairwise_distances):.6f} max={np.max(pairwise_distances):.6f} mean={np.mean(pairwise_distances):.6f}"
167     )
168
169     # %%
170     # Plot particle distrib
171
172     fig = plt.figure(dpi=120, figsize=(10, 5))
173     ax = fig.add_subplot(121, projection="3d")
174     ax.set_xlim3d(bmin[0], bmax[0])
175     ax.set_ylim3d(bmin[1], bmax[1])
176     ax.set_zlim3d(bmin[2], bmax[2])
177     ax.set_aspect("equal")
178
179     cm = matplotlib.colormaps["viridis"]
180     sc = ax.scatter(
181         dat["xyz"][:, 0],
182         dat["xyz"][:, 1],
183         dat["xyz"][:, 2],
184         s=5,
185         vmin=scatter_range[0],
186         vmax=scatter_range[1],
187         c=dat["hpart"],
188         cmap=cm,
189         edgecolors="black",
190         linewidths=0.5,
191     )
192     cbar = plt.colorbar(sc, ax=ax, orientation="horizontal", pad=0.1, aspect=30)
193     cbar.set_label("hpart")
194     ax.set_title(f"t = {model.get_time():0.3f}")
195
196     ax = fig.add_subplot(122)
197
198     # Filter distances to the display range
199     max_dist = hmean * 3
200     filtered_distances = pairwise_distances[pairwise_distances <= max_dist] / hmean
201
202     # Create histogram and normalize by distance^2
203     bins = 500
204     counts, bin_edges = np.histogram(filtered_distances, bins=bins)
205     bin_centers = (bin_edges[:-1] + bin_edges[1:]) / 2
206
207     # Avoid division by zero for the first bin
208     normalized_counts = np.where(bin_centers > 0, counts / (bin_centers**2), 0)
209
210     normalized_counts = normalized_counts / len(dat["xyz"])
211
212     ax.bar(bin_centers, normalized_counts, width=bin_edges[1] - bin_edges[0], align="center")
213     ax.set_xlabel("distances / hmean")
214     ax.set_ylabel("counts / (r^2 * number of particles)")
215     ax.set_xlim(0, 3)
216     ax.set_ylim(0, 1.5)
217
218     plt.tight_layout()
219     plt.savefig(os.path.join(dump_folder, f"{sim_name}_{iplot:04}.png"))
220     plt.close(fig)
221
222
223 tcur = 0
224 for iplot in range(50):
225     model.evolve_until(tcur)
226     make_plot(model, iplot)
227     tcur += 0.5
---------------- t = 0, dt = 0 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 27.32 us   (2.7%)
   patch tree reduce : 5.84 us    (0.6%)
   gen split merge   : 612.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.1%)
   LB compute        : 950.44 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (79.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (-1.865538973300218e-16,1.2084083733654439e-17,-2.3922270414589165e-17)
    sum e = 2.5919999999999996
    sum de = 0
Info: CFL hydro = 0.00011562606709629723 sink sink = inf                              [SPH][rank=0]
Info: cfl dt = 0.00011562606709629723 cfl multiplier : 0.01                    [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1350e+04 |  512 |      1 | 4.511e-02 | 0.1% |   3.0% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                             [sph::Model][rank=0]
Info: iteration since start : 1                                                       [SPH][rank=0]
Info: time since start : 702.843472476 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14927261075047352 max=0.1507237498505323 delta=0.0014511391000587848
Number of particle pairs: 130816
Distance min=0.144259 max=1.991431 mean=0.805668
---------------- t = 0, dt = 0.00011562606709629723 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.59 us    (1.5%)
   patch tree reduce : 1704.00 ns (0.3%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.1%)
   LB compute        : 596.58 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2715517821229013e-20,1.6237621598864938e-21,-3.1932083320303054e-21)
    sum a = (-1.9905951886833861e-16,-3.7751052284207277e-17,1.0159646561536118e-16)
    sum e = 2.592000000336766
    sum de = 3.5998900258307764e-21
Info: CFL hydro = 0.003931011225662891 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.003931011225662891 cfl multiplier : 0.34                      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2534e+04 |  512 |      1 | 4.085e-02 | 0.0% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.190014327252406 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.00011562606709629723, dt = 0.003931011225662891 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.64 us    (0.5%)
   patch tree reduce : 952.00 ns  (0.1%)
   gen split merge   : 641.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.1%)
   LB compute        : 667.78 us  (98.0%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.174613329997582e-19,-1.72347487843727e-19,4.071069043399926e-19)
    sum a = (-1.924554265952949e-16,3.9343528435153984e-17,-4.915013708528537e-17)
    sum e = 2.592000389227657
    sum de = 2.854501032246992e-19
Info: CFL hydro = 0.006456413066119474 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006456413066119474 cfl multiplier : 0.56                      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6040e+04 |  512 |      1 | 3.192e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 443.33615842171844 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.004046637292759188, dt = 0.006456413066119474 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (0.8%)
   patch tree reduce : 651.00 ns  (0.2%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 581.00 ns  (0.1%)
   LB compute        : 397.27 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.60 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0871976022518447e-18,2.1369624819689293e-19,-2.1680655317921072e-19)
    sum a = (-9.086481567166516e-17,-2.2482016248659418e-17,3.032144847703311e-17)
    sum e = 2.5920010449742854
    sum de = -8.029872339970767e-19
Info: CFL hydro = 0.008104921983139432 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008104921983139432 cfl multiplier : 0.7066666666666667        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5902e+04 |  512 |      1 | 3.220e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 721.8760270546463 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.010503050358878663, dt = 0.008104921983139432 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (0.9%)
   patch tree reduce : 581.00 ns  (0.2%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 701.00 ns  (0.2%)
   LB compute        : 368.39 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.50 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.64924800846833e-18,-1.4929463915125396e-19,2.788296937089596e-19)
    sum a = (-6.20128948192189e-17,-4.84300100023205e-17,-9.789044574937122e-18)
    sum e = 2.5920016138383
    sum de = -6.945670167485263e-19
Info: CFL hydro = 0.009161944496805225 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009161944496805225 cfl multiplier : 0.8044444444444444        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6633e+04 |  512 |      1 | 3.078e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 947.9036871236012 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.018607972342018095, dt = 0.009161944496805225 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.43 us    (0.9%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 701.00 ns  (0.2%)
   LB compute        : 365.75 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.75 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.845380181470958e-18,-5.7083244381361805e-19,4.1165801236559e-20)
    sum a = (5.23643628458359e-17,1.7629647741657095e-16,-3.9923142916564735e-17)
    sum e = 2.5920019680314845
    sum de = 1.2536087619363645e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010812606393465513
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.445797470801425e-18,4.508112633194728e-19,-7.995313395722791e-20)
    sum a = (-5.971785566050158e-17,-8.580636201571678e-17,7.444240536502722e-17)
    sum e = 2.5919999796558146
    sum de = 1.7957098481791167e-18
Info: CFL hydro = 0.004913276103582038 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004913276103582038 cfl multiplier : 0.4348148148148148        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2299e+04 |  512 |      1 | 4.163e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 792.2940911791053 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.027769916838823322, dt = 0.004913276103582038 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.43 us    (1.1%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.2%)
   LB compute        : 392.86 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.2552086026704786e-18,-1.0216437071330908e-18,7.861753240599734e-19)
    sum a = (9.653215726768138e-17,-9.639164466612727e-17,1.290139869936091e-16)
    sum e = 2.592000550454897
    sum de = -3.1848438816761693e-19
Info: CFL hydro = 0.00701286621271987 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00701286621271987 cfl multiplier : 0.6232098765432098         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6645e+04 |  512 |      1 | 3.076e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 575.040131782714 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.03268319294240536, dt = 0.00701286621271987 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.59 us    (0.9%)
   patch tree reduce : 862.00 ns  (0.2%)
   gen split merge   : 591.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 390.15 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 2.80 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.286257121120183e-18,-1.949612346563434e-18,1.9126546050088343e-18)
    sum a = (-1.1896733598248942e-17,-1.4519635493925874e-17,-1.2139117835929802e-16)
    sum e = 2.592001050573768
    sum de = -2.89346454782069e-18
Info: CFL hydro = 0.00837818618411533 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00837818618411533 cfl multiplier : 0.7488065843621398         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6149e+04 |  512 |      1 | 3.170e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 796.2993071687744 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.03969605915512523, dt = 0.00837818618411533 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.98 us    (1.0%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 388.32 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9156364822480185e-18,-1.9027748127120604e-18,-3.183488628960562e-20)
    sum a = (-4.604129577590044e-17,8.618106228652778e-18,-7.913201344189602e-17)
    sum e = 2.5920013595975115
    sum de = -2.927345865710862e-18
Info: CFL hydro = 0.009255153106258405 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009255153106258405 cfl multiplier : 0.8325377229080931        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6169e+04 |  512 |      1 | 3.166e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 952.5301283861864 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.04807424533924056, dt = 0.009255153106258405 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.67 us    (0.9%)
   patch tree reduce : 1282.00 ns (0.3%)
   gen split merge   : 662.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 711.00 ns  (0.2%)
   LB compute        : 373.98 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.87 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.094204580056381e-18,-1.6920059103808782e-18,-5.357042934250877e-19)
    sum a = (7.217663966496701e-17,-9.386241783815307e-17,-5.689589424595632e-17)
    sum e = 2.592001437583204
    sum de = -4.187730891225261e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011629793646148676
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9156364822480185e-18,-2.0257233390719166e-18,-3.5713619561672516e-19)
    sum a = (-1.1226956864174297e-16,4.177908019542542e-17,4.313151398538384e-17)
    sum e = 2.5919999437361767
    sum de = -1.395910297075087e-18
Info: CFL hydro = 0.004906626412711238 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004906626412711238 cfl multiplier : 0.4441792409693644        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2660e+04 |  512 |      1 | 4.044e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 823.8616122948408 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.05732939844549897, dt = 0.004906626412711238 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (1.1%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 408.24 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 us    (73.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.946062226978242e-18,-1.2587587222556706e-18,2.096711476315405e-19)
    sum a = (-1.7650724631890213e-16,3.6626951471774306e-17,-6.323067069935462e-18)
    sum e = 2.5920003660559083
    sum de = -7.48099499014998e-18
Info: CFL hydro = 0.00693034964910431 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00693034964910431 cfl multiplier : 0.6294528273129095         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6453e+04 |  512 |      1 | 3.112e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 567.6249353330127 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.062236024858210205, dt = 0.00693034964910431 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.24 us    (1.1%)
   patch tree reduce : 1002.00 ns (0.3%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 751.00 ns  (0.2%)
   LB compute        : 366.12 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.283859287608106e-18,-1.0889726620444407e-18,9.2577313003106e-20)
    sum a = (6.922587503233046e-17,5.686076609556778e-17,-1.0111052620165317e-17)
    sum e = 2.592000648414031
    sum de = 2.019326546254252e-18
Info: CFL hydro = 0.008254406012291101 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008254406012291101 cfl multiplier : 0.7529685515419396        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6161e+04 |  512 |      1 | 3.168e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 787.4913349478021 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.06916637450731451, dt = 0.008254406012291101 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (0.9%)
   patch tree reduce : 771.00 ns  (0.2%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 591.00 ns  (0.2%)
   LB compute        : 368.80 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.71 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.759864377645862e-18,-4.566659550508944e-19,-2.2211236756081164e-19)
    sum a = (8.30897850523371e-17,-3.372302437298913e-17,8.067765205899136e-18)
    sum e = 2.5920007591539242
    sum de = -4.065758146820642e-18
Info: CFL hydro = 0.009114493431217754 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009114493431217754 cfl multiplier : 0.8353123676946265        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6969e+04 |  512 |      1 | 3.017e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 984.8696930476699 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.07742078051960562, dt = 0.009114493431217754 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.74 us    (1.0%)
   patch tree reduce : 1153.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 481.00 ns  (0.1%)
   LB compute        : 377.18 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0649311213992723e-18,-1.2119211884042968e-18,1.4343994741983223e-19)
    sum a = (-9.643848219997863e-17,5.784435430644663e-17,3.485297987715352e-17)
    sum e = 2.5920007020264886
    sum de = 3.3068166260807885e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011320175979559657
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.285634347400702e-18,-1.0070069778045365e-18,5.561957144850638e-20)
    sum a = (-2.458970527197124e-18,-2.997602166487923e-17,5.021861832626984e-17)
    sum e = 2.5919999241452607
    sum de = -1.1248597539537109e-18
Info: CFL hydro = 0.004835316275440012 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004835316275440012 cfl multiplier : 0.44510412256487547       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2817e+04 |  512 |      1 | 3.995e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 821.3825761135689 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.08653527395082337, dt = 0.004835316275440012 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (0.8%)
   patch tree reduce : 822.00 ns  (0.2%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 711.00 ns  (0.2%)
   LB compute        : 431.68 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.948989572843953e-18,-1.5222198501696481e-18,4.471520809873342e-19)
    sum a = (-5.02098362886727e-17,4.871103520542874e-18,3.067272998091841e-17)
    sum e = 2.592000145444104
    sum de = -2.15485181781494e-18
Info: CFL hydro = 0.00682815649401218 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00682815649401218 cfl multiplier : 0.6300694150432503         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5974e+04 |  512 |      1 | 3.205e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 543.1036907819916 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.09137059022626338, dt = 0.00682815649401218 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.93 us    (0.9%)
   patch tree reduce : 982.00 ns  (0.2%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 413.02 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 10.18 us   (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.054374024009544e-18,-1.4870916997811178e-18,6.652393479827934e-19)
    sum a = (-7.154433295797347e-17,-9.48928435828833e-17,-2.0052319180119406e-18)
    sum e = 2.5920002501167625
    sum de = 3.537209587733958e-18
Info: CFL hydro = 0.00813965882073641 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00813965882073641 cfl multiplier : 0.7533796100288335         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6722e+04 |  512 |      1 | 3.062e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 802.8352877307198 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.09819874672027556, dt = 0.00813965882073641 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.85 us    (1.0%)
   patch tree reduce : 1112.00 ns (0.3%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 711.00 ns  (0.2%)
   LB compute        : 365.64 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.85 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.756937031780151e-18,-2.3243126173744243e-18,5.269222558279552e-19)
    sum a = (-8.742225693358918e-17,2.2505435015585106e-17,-9.859739977594039e-17)
    sum e = 2.5920002518172214
    sum de = 6.315477654728063e-18
Info: CFL hydro = 0.009000017457213905 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009000017457213905 cfl multiplier : 0.835586406685889         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6545e+04 |  512 |      1 | 3.095e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 946.9230289238257 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.10633840554101198, dt = 0.009000017457213905 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.71 us    (0.9%)
   patch tree reduce : 922.00 ns  (0.2%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 420.26 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.860546423153146e-18,-1.7915356698150476e-18,-8.05020113070487e-19)
    sum a = (-1.3892012540317465e-16,-7.09588637848313e-17,7.430408827287238e-17)
    sum e = 2.592000179259087
    sum de = -8.456776945386935e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010879604306784092
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.1035161300071474e-18,-2.3418766925686897e-18,-2.6272929144754985e-19)
    sum a = (-1.4046576402027e-16,-1.9727969258198642e-16,-2.6357090338394173e-17)
    sum e = 2.5919999271624183
    sum de = 2.520770051028798e-18
Info: CFL hydro = 0.004783835794912724 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004783835794912724 cfl multiplier : 0.4451954688952964        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2692e+04 |  512 |      1 | 4.034e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 803.1764388046322 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.11533842299822589, dt = 0.004783835794912724 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.47 us    (0.9%)
   patch tree reduce : 671.00 ns  (0.2%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 752.00 ns  (0.2%)
   LB compute        : 376.25 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.63 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.226464656367004e-18,-3.758712091572747e-18,-7.852605284769387e-19)
    sum a = (1.0004497230653441e-16,2.0163558323016417e-16,-5.894540227018713e-17)
    sum e = 2.5919999984594844
    sum de = -1.5585406229479126e-18
Info: CFL hydro = 0.006762805825947054 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006762805825947054 cfl multiplier : 0.6301303125968643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6332e+04 |  512 |      1 | 3.135e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 549.3335472708266 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1201222587931386, dt = 0.006762805825947054 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.51 us    (0.8%)
   patch tree reduce : 831.00 ns  (0.2%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 415.50 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.999906738634152e-18,-9.54314752221741e-19,-1.0026159590059703e-18)
    sum a = (-4.519822016657571e-18,-5.111731350704307e-17,-1.8687444170231716e-18)
    sum e = 2.5920000213141625
    sum de = -4.472333961502706e-19
Info: CFL hydro = 0.008075214443810897 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008075214443810897 cfl multiplier : 0.7534202083979095        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6238e+04 |  512 |      1 | 3.153e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 772.1171583951343 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.12688506461908566, dt = 0.008075214443810897 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.54 us    (0.9%)
   patch tree reduce : 651.00 ns  (0.2%)
   gen split merge   : 532.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 691.00 ns  (0.2%)
   LB compute        : 384.77 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.31 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.957148836721604e-18,-2.3418766925686897e-18,-9.660241356845845e-19)
    sum a = (6.669664820435628e-17,1.7273389749800084e-16,3.569459181354539e-17)
    sum e = 2.5920000227197377
    sum de = 2.8053731213062427e-18
Info: CFL hydro = 0.008946965862260304 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008946965862260304 cfl multiplier : 0.8356134722652729        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6492e+04 |  512 |      1 | 3.105e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 936.3786120351195 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.13496027906289657, dt = 0.008946965862260304 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.3%)
   patch tree reduce : 1082.00 ns (0.3%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 371.30 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.970633279977043e-18,-4.098284211995207e-20,-5.979103930714436e-19)
    sum a = (1.6838093419568878e-17,1.0395590638312413e-16,2.0200150146337804e-17)
    sum e = 2.592000035666445
    sum de = 4.811147140404426e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010351711705033313
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.485846152342155e-18,-1.5807667674838654e-19,-8.15265823600475e-19)
    sum a = (-4.9460435747050725e-17,4.284463409054417e-17,-9.490894398514471e-17)
    sum e = 2.5919999502335602
    sum de = -2.1277467635028025e-18
Info: CFL hydro = 0.004766452145536542 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004766452145536542 cfl multiplier : 0.445204490755091         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2541e+04 |  512 |      1 | 4.083e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 788.9380201530842 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.14390724492515686, dt = 0.004766452145536542 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.50 us    (1.0%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 682.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 417.50 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.77272604718182e-18,9.952975943416931e-20,-1.6495593953280706e-18)
    sum a = (9.442446824436957e-17,9.671950740308688e-17,-2.8131793769481383e-18)
    sum e = 2.5919999715606323
    sum de = 8.944667923005412e-19
Info: CFL hydro = 0.006746300047022441 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006746300047022441 cfl multiplier : 0.6301363271700606        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5999e+04 |  512 |      1 | 3.200e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 536.2052224717958 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1486736970706934, dt = 0.006746300047022441 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.53 us    (1.2%)
   patch tree reduce : 1353.00 ns (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.3%)
   LB compute        : 375.30 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.941359821319935e-18,5.796144814107507e-19,-1.7681169028893606e-18)
    sum a = (-5.955392429202178e-17,-1.3765551198918756e-16,3.208956537992247e-17)
    sum e = 2.592000023173982
    sum de = -1.6127507315721878e-18
Info: CFL hydro = 0.008069190673341615 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008069190673341615 cfl multiplier : 0.7534242181133738        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6641e+04 |  512 |      1 | 3.077e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 789.382340058208 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.15541999711771584, dt = 0.008069190673341615 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.48 us    (0.9%)
   patch tree reduce : 832.00 ns  (0.2%)
   gen split merge   : 532.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 361.15 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.1357169345299666e-18,-1.3641431734212618e-18,-1.3385288970962917e-18)
    sum a = (-3.6626951471774306e-17,1.9004329360194915e-16,4.770695557348992e-17)
    sum e = 2.592000116955499
    sum de = 1.8973538018496328e-19
Info: CFL hydro = 0.00895830154215461 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00895830154215461 cfl multiplier : 0.8356161454089159         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6845e+04 |  512 |      1 | 3.039e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 955.7310040278112 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.16348918779105745, dt = 0.00895830154215461 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.50 us    (0.9%)
   patch tree reduce : 591.00 ns  (0.2%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 561.00 ns  (0.1%)
   LB compute        : 379.76 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.81 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.790290122376085e-18,1.569057384021022e-18,-7.687942079823151e-19)
    sum a = (-1.1712310808709159e-16,4.2809505940155647e-17,-7.349979999626832e-17)
    sum e = 2.592000272359789
    sum de = -1.9786689647860456e-18
Info: CFL hydro = 0.009562592762024332 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009562592762024332 cfl multiplier : 0.890410763605944         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6725e+04 |  512 |      1 | 3.061e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1053.496464331034 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.17244748933321205, dt = 0.009562592762024332 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 us    (0.8%)
   patch tree reduce : 731.00 ns  (0.2%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 741.00 ns  (0.2%)
   LB compute        : 384.55 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.64037270950535e-18,1.2646134139870923e-18,-2.0337735402026214e-18)
    sum a = (4.730590918988753e-18,-5.920264278813647e-17,6.563109430923753e-17)
    sum e = 2.592000496985449
    sum de = -2.710505431213761e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010904736053590361
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.5865281978494394e-18,7.611099250848241e-19,-1.50721720260788e-18)
    sum a = (-1.858279155553255e-17,-1.815891187417762e-16,-4.160343944348277e-17)
    sum e = 2.5920000244573527
    sum de = 1.6127507315721878e-18
Info: CFL hydro = 0.004992298476275281 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004992298476275281 cfl multiplier : 0.46347025453531465       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2551e+04 |  512 |      1 | 4.079e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 843.8693357131793 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1820100820952364, dt = 0.004992298476275281 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.99 us    (1.0%)
   patch tree reduce : 972.00 ns  (0.2%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.2%)
   LB compute        : 375.23 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.318364664277155e-18,-5.679050979479072e-19,-2.23758999610274e-18)
    sum a = (-1.3335231356659262e-16,4.5900783174346314e-18,-5.824832803591473e-17)
    sum e = 2.5920001435174718
    sum de = -1.8295911660692887e-18
Info: CFL hydro = 0.0069296018704944244 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0069296018704944244 cfl multiplier : 0.6423135030235431       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6053e+04 |  512 |      1 | 3.189e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 563.5075581849355 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.18700238057151167, dt = 0.0069296018704944244 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.57 us    (0.9%)
   patch tree reduce : 691.00 ns  (0.2%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 591.00 ns  (0.1%)
   LB compute        : 401.17 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.88041507049364e-18,1.5222198501696481e-19,-2.5709415065605645e-18)
    sum a = (-7.10701029277283e-17,-4.8617360137725995e-17,-6.340631145129728e-17)
    sum e = 2.59200036594552
    sum de = 6.247715018947719e-18
Info: CFL hydro = 0.008236792561514716 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008236792561514716 cfl multiplier : 0.7615423353490286        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6399e+04 |  512 |      1 | 3.122e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 799.0248036308049 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1939319824420061, dt = 0.008236792561514716 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (0.5%)
   patch tree reduce : 1172.00 ns (0.2%)
   gen split merge   : 651.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.1%)
   LB compute        : 736.88 us  (97.8%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (73.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.301952875156005e-18,-5.796144814107507e-19,-3.0104093046504076e-18)
    sum a = (8.081304180528048e-17,1.8828688608252263e-17,-7.242839140941815e-17)
    sum e = 2.5920006557265305
    sum de = 1.8973538018496328e-18
Info: CFL hydro = 0.00912837919464866 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00912837919464866 cfl multiplier : 0.841028223566019          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6531e+04 |  512 |      1 | 3.097e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 957.3886619707698 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.20216877500352082, dt = 0.00912837919464866 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.54 us    (0.8%)
   patch tree reduce : 992.00 ns  (0.2%)
   gen split merge   : 651.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 429.17 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (73.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.552552333534024e-18,-3.2786273695961654e-19,-3.786521877297e-18)
    sum a = (-1.2754445936902227e-16,8.561901188031129e-17,3.6761609381597e-17)
    sum e = 2.5920009978187877
    sum de = -2.608861477543245e-18
Info: CFL hydro = 0.009746664121726156 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009746664121726156 cfl multiplier : 0.8940188157106794        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1791e+04 |  512 |      1 | 4.342e-02 | 0.0% |   1.0% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 756.7794276028274 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.21129715419816947, dt = 0.009746664121726156 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.48 us    (0.9%)
   patch tree reduce : 511.00 ns  (0.1%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 691.00 ns  (0.2%)
   LB compute        : 389.28 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.59 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.396780228931867e-18,1.2675407598528033e-18,-2.865322725181113e-18)
    sum a = (-1.4818224772228384e-17,-1.1531400834208228e-16,6.758070665580096e-17)
    sum e = 2.592001367684139
    sum de = -1.009663273127126e-18
Info: CFL hydro = 0.01018587516857209 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01018587516857209 cfl multiplier : 0.9293458771404529         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6415e+04 |  512 |      1 | 3.119e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1124.961377156422 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2210438183198956, dt = 0.01018587516857209 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.62 us    (0.9%)
   patch tree reduce : 621.00 ns  (0.2%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 701.00 ns  (0.2%)
   LB compute        : 368.07 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.99 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.834729822715382e-18,-1.2207032260014295e-18,-2.0592048574109844e-18)
    sum a = (-5.856448138941151e-17,-6.248127015773264e-17,1.4250319674280475e-16)
    sum e = 2.5920017367044483
    sum de = -1.6661138072492088e-18
Info: CFL hydro = 0.010479782685932025 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010479782685932025 cfl multiplier : 0.9528972514269686        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6514e+04 |  512 |      1 | 3.100e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1182.744961020749 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2312296934884677, dt = 0.010479782685932025 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.22 us    (0.7%)
   patch tree reduce : 472.00 ns  (0.1%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 590.00 ns  (0.1%)
   LB compute        : 425.03 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.67 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0011522860731148e-17,-1.463672932855431e-18,-1.888138083383506e-19)
    sum a = (-1.0490436644361445e-16,5.3582138725971614e-17,1.3875619403469486e-17)
    sum e = 2.5920020666568417
    sum de = 2.930733997499879e-19
Info: CFL hydro = 0.010672601681151948 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010672601681151948 cfl multiplier : 0.9685981676179791        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6784e+04 |  512 |      1 | 3.050e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1236.7613315953568 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.24170947617439972, dt = 0.010672601681151948 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.61 us    (1.0%)
   patch tree reduce : 511.00 ns  (0.1%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 571.00 ns  (0.2%)
   LB compute        : 361.75 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.31 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1246862816061131e-17,-8.05020113070487e-20,-7.462902366396628e-19)
    sum a = (-1.0253907098412007e-16,1.202787869303279e-16,4.495817780558742e-17)
    sum e = 2.5920023299859305
    sum de = -2.0803129184565616e-18
Info: CFL hydro = 0.01079342238233076 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01079342238233076 cfl multiplier : 0.9790654450786528         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6577e+04 |  512 |      1 | 3.089e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1243.9992945572599 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.25238207785555167, dt = 0.01079342238233076 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (0.8%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 501.00 ns  (0.1%)
   LB compute        : 391.35 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.39 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.216019472616292e-17,1.3334060418312977e-18,-8.873517155436051e-20)
    sum a = (7.73756059224695e-17,2.866457071704076e-17,-3.125819915406058e-17)
    sum e = 2.5920025083610376
    sum de = 1.802486111757151e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01006761170238573
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1100495522775589e-17,7.076858630356008e-19,-4.890039789111691e-19)
    sum a = (-3.9928997608296154e-17,-7.859338180260522e-17,3.161533534967731e-19)
    sum e = 2.592000271178621
    sum de = -6.776263578034403e-21
Info: CFL hydro = 0.005441215883793631 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005441215883793631 cfl multiplier : 0.4930218150262176        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2788e+04 |  512 |      1 | 4.004e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 970.4791687973125 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.26317550023788244, dt = 0.005441215883793631 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 us    (0.8%)
   patch tree reduce : 882.00 ns  (0.2%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 681.00 ns  (0.2%)
   LB compute        : 392.93 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.43 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1981626628354558e-17,-3.066394794332128e-19,-3.7662134153536306e-19)
    sum a = (5.5408802546175194e-17,-7.503372922990081e-17,5.553175107253505e-17)
    sum e = 2.5920008305747335
    sum de = -8.538092108323347e-19
Info: CFL hydro = 0.0073104125649654204 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0073104125649654204 cfl multiplier : 0.6620145433508117       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6718e+04 |  512 |      1 | 3.063e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 639.589862625909 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.2686167161216761, dt = 0.0073104125649654204 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (0.8%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 521.00 ns  (0.1%)
   LB compute        : 365.59 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.30 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1355174613092434e-17,-5.199698093968918e-19,1.4783096621839852e-19)
    sum a = (-7.366373136474813e-17,-1.3208184546087409e-17,6.95069002354387e-17)
    sum e = 2.592001294513007
    sum de = -2.1819568721270777e-18
Info: CFL hydro = 0.008562580349498621 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008562580349498621 cfl multiplier : 0.7746763622338744        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6696e+04 |  512 |      1 | 3.067e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 858.1790248985865 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2759271286866415, dt = 0.008562580349498621 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (0.9%)
   patch tree reduce : 491.00 ns  (0.1%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 421.00 ns  (0.1%)
   LB compute        : 365.53 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.06 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (11.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.252904030524249e-17,-6.762168949792091e-19,7.885537925758635e-19)
    sum a = (-1.98356955860568e-16,1.8126125600481656e-16,-1.99703534958795e-17)
    sum e = 2.5920016593233544
    sum de = -6.098637220230962e-19
Info: CFL hydro = 0.009405537162061264 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009405537162061264 cfl multiplier : 0.8497842414892496        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7393e+04 |  512 |      1 | 2.944e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.149666948215 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2844897090361401, dt = 0.009405537162061264 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.22 us    (0.9%)
   patch tree reduce : 641.00 ns  (0.2%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 611.00 ns  (0.2%)
   LB compute        : 360.41 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.37 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.491482718579684e-17,1.9715674405562655e-18,1.9686400946905546e-19)
    sum a = (6.636878546739666e-17,-8.711781296355526e-18,2.1147146533895267e-17)
    sum e = 2.5920018826781517
    sum de = 1.2332799712022613e-18
Info: CFL hydro = 0.009955491158269578 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009955491158269578 cfl multiplier : 0.899856160992833         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6820e+04 |  512 |      1 | 3.044e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1112.3793371888407 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2938952461982014, dt = 0.009955491158269578 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (0.8%)
   patch tree reduce : 491.00 ns  (0.1%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 431.00 ns  (0.1%)
   LB compute        : 366.07 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.16 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.297106953096483e-17,9.162592559674999e-19,5.763212173118259e-19)
    sum a = (1.3842833129773525e-16,-8.674311269274426e-17,-3.525695360662162e-17)
    sum e = 2.592001954767734
    sum de = -1.3010426069826053e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011496128028069251
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2678334944393743e-17,4.3324718812520757e-19,3.099327435321375e-19)
    sum a = (-4.318420621096663e-17,-1.0997452948302566e-16,-2.9062689754777436e-17)
    sum e = 2.592000225359555
    sum de = 5.55653613398821e-19
Info: CFL hydro = 0.0051332841170642456 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0051332841170642456 cfl multiplier : 0.46661872033094437      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2254e+04 |  512 |      1 | 4.178e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 857.7760153258205 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.303850737356471, dt = 0.0051332841170642456 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.49 us    (0.9%)
   patch tree reduce : 791.00 ns  (0.2%)
   gen split merge   : 692.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 701.00 ns  (0.2%)
   LB compute        : 381.16 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.30 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3603376237958375e-17,-1.7271340607694085e-19,4.076329118002375e-19)
    sum a = (4.028027911218146e-17,1.397632010124994e-16,-5.059624594294654e-17)
    sum e = 2.592000687080069
    sum de = -1.2061749168901237e-18
Info: CFL hydro = 0.0070689543890679355 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0070689543890679355 cfl multiplier : 0.6444124802206296       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6379e+04 |  512 |      1 | 3.126e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 591.1774878168055 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.30898402147353526, dt = 0.0070689543890679355 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (0.8%)
   patch tree reduce : 441.00 ns  (0.1%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 421.00 ns  (0.1%)
   LB compute        : 376.53 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.11 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3202329854355987e-17,1.2968142185099119e-18,-1.3209648219020264e-19)
    sum a = (-2.3559279527241016e-17,-1.236510893676268e-16,4.259288234609304e-18)
    sum e = 2.592001019220096
    sum de = 8.131516293641283e-20
Info: CFL hydro = 0.008338805770105602 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008338805770105602 cfl multiplier : 0.7629416534804196        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6932e+04 |  512 |      1 | 3.024e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 841.5657329779982 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3160529758626032, dt = 0.008338805770105602 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (0.8%)
   patch tree reduce : 511.00 ns  (0.1%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 451.00 ns  (0.1%)
   LB compute        : 403.49 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.20 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3421880794284302e-17,-5.181402182308226e-19,2.078415564654712e-19)
    sum a = (-9.081797813781378e-17,6.140400687915104e-17,-8.987537276905488e-17)
    sum e = 2.592001215087759
    sum de = 9.0801931945661e-19
Info: CFL hydro = 0.009167272663885027 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009167272663885027 cfl multiplier : 0.8419611023202798        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6577e+04 |  512 |      1 | 3.089e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 971.9494840370006 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3243917816327088, dt = 0.009167272663885027 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.73 us    (1.0%)
   patch tree reduce : 552.00 ns  (0.1%)
   gen split merge   : 611.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.2%)
   LB compute        : 370.25 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.440546900516315e-17,1.1123914289701275e-18,-1.4351313106647502e-18)
    sum a = (-7.62983426438879e-17,1.5409548637101976e-17,-9.875694012562163e-17)
    sum e = 2.5920012639314782
    sum de = -2.358139725155972e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011793722943673068
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.422397356148908e-17,6.205973235307028e-19,-1.332308287131656e-18)
    sum a = (-7.423749115442746e-17,-8.112260863057941e-17,-1.2303049204409612e-16)
    sum e = 2.5920002113238985
    sum de = -3.984442983884229e-18
Info: CFL hydro = 0.004854337028782749 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004854337028782749 cfl multiplier : 0.44732036744009324       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2275e+04 |  512 |      1 | 4.171e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 791.1921297694217 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3335590542965938, dt = 0.004854337028782749 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 us    (0.8%)
   patch tree reduce : 1232.00 ns (0.3%)
   gen split merge   : 682.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.2%)
   LB compute        : 380.82 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4759677854914165e-17,-1.6978606021123e-19,-1.967176421757699e-18)
    sum a = (6.215340742077302e-17,-2.1779453240888813e-17,2.557914817458151e-17)
    sum e = 2.5920005078335535
    sum de = 1.6263032587282567e-19
Info: CFL hydro = 0.0068419113609315164 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0068419113609315164 cfl multiplier : 0.6315469116267288       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5867e+04 |  512 |      1 | 3.227e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 541.5689659494116 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.33841339132537657, dt = 0.0068419113609315164 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.01 us    (0.5%)
   patch tree reduce : 1252.00 ns (0.2%)
   gen split merge   : 691.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.1%)
   LB compute        : 746.45 us  (98.1%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4182990719369126e-17,-2.3418766925686896e-20,-1.5419794347631966e-18)
    sum a = (-6.941322516773596e-17,-1.9390739014468748e-17,2.9864782521982215e-17)
    sum e = 2.5920007148170923
    sum de = -3.577867169202165e-18
Info: CFL hydro = 0.008155800178359091 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008155800178359091 cfl multiplier : 0.7543646077511527        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5557e+04 |  512 |      1 | 3.291e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 748.4121316383258 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3452553026863081, dt = 0.008155800178359091 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.47 us    (0.9%)
   patch tree reduce : 812.00 ns  (0.2%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 551.00 ns  (0.1%)
   LB compute        : 388.08 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.50 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5031921020425277e-17,-2.3418766925686897e-19,-1.0432328828927085e-18)
    sum a = (-4.065497938299245e-17,-1.2552459072168176e-17,-4.4577622843045007e-17)
    sum e = 2.5920008183751513
    sum de = 4.391018798566293e-18
Info: CFL hydro = 0.00902384824035529 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00902384824035529 cfl multiplier : 0.8362430718341018         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6864e+04 |  512 |      1 | 3.036e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 967.0807370308589 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3534111028646672, dt = 0.00902384824035529 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.85 us    (0.9%)
   patch tree reduce : 791.00 ns  (0.2%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 651.00 ns  (0.2%)
   LB compute        : 399.64 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.67 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5266108689682146e-17,-4.156831129309424e-19,-1.746527727129743e-18)
    sum a = (2.5666968550552837e-17,-1.313324449192521e-16,7.942767537433282e-17)
    sum e = 2.5920008246359076
    sum de = -2.6291902682773483e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011876688038904364
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4718695012794214e-17,-1.0011522860731148e-18,-1.21411669780358e-18)
    sum a = (1.1892049844863805e-16,-4.730590918988753e-18,-1.9235589683586074e-17)
    sum e = 2.592000206839808
    sum de = -2.9544509200229996e-18
Info: CFL hydro = 0.004801193249208334 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004801193249208334 cfl multiplier : 0.44541435727803397       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3055e+04 |  512 |      1 | 3.922e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 828.3272168161495 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3624349511050225, dt = 0.004801193249208334 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.1%)
   patch tree reduce : 1142.00 ns (0.3%)
   gen split merge   : 661.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 428.21 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (73.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.395758508770939e-17,-2.458970527197124e-19,-1.7688487393557884e-18)
    sum a = (4.561975797123807e-17,-1.275620234442165e-16,-2.963352219859105e-17)
    sum e = 2.592000382039703
    sum de = 6.179952383167375e-18
Info: CFL hydro = 0.00679014775969442 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00679014775969442 cfl multiplier : 0.630276238185356          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6571e+04 |  512 |      1 | 3.090e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 559.3953952277374 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.36723614435423085, dt = 0.00679014775969442 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.30 us    (0.9%)
   patch tree reduce : 521.00 ns  (0.1%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 400.00 ns  (0.1%)
   LB compute        : 365.54 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.35 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4103952380994934e-17,-1.6276043013352393e-18,-2.0579241435947358e-18)
    sum a = (1.159931525829272e-16,7.494005416219807e-18,3.671477184774563e-17)
    sum e = 2.5920005013620946
    sum de = 2.520770051028798e-18
Info: CFL hydro = 0.008114656568074847 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008114656568074847 cfl multiplier : 0.7535174921235708        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6247e+04 |  512 |      1 | 3.151e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 775.6654242000096 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3740262921139253, dt = 0.008114656568074847 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (0.8%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 511.00 ns  (0.1%)
   LB compute        : 374.15 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.31 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2555386418033887e-17,-1.059699203387332e-18,-1.3070599290399e-18)
    sum a = (1.2468151511235702e-16,4.8980351025074144e-17,2.7309209581216632e-17)
    sum e = 2.592000567563397
    sum de = -1.111307226797642e-18
Info: CFL hydro = 0.009000128384972855 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009000128384972855 cfl multiplier : 0.8356783280823805        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6862e+04 |  512 |      1 | 3.036e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 962.0573804562305 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.38214094868200016, dt = 0.009000128384972855 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (0.8%)
   patch tree reduce : 481.00 ns  (0.1%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 511.00 ns  (0.1%)
   LB compute        : 367.47 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.27 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1274672601785385e-17,-5.971785566050158e-19,-1.3366993059302224e-18)
    sum a = (5.43315392675936e-18,-1.6929426610579056e-16,-1.3368603099528365e-16)
    sum e = 2.5920005973620017
    sum de = 2.8189256484623115e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01154049293796559
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1848432391464714e-17,-1.4402541659297442e-18,-2.276377328823409e-18)
    sum a = (7.346467184587979e-17,3.0245337484524626e-17,-1.1516178635706531e-17)
    sum e = 2.592000216687428
    sum de = 2.168404344971009e-18
Info: CFL hydro = 0.00480033341279423 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00480033341279423 cfl multiplier : 0.4452261093607935         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2395e+04 |  512 |      1 | 4.131e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 784.3732748640368 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.391141077066973, dt = 0.00480033341279423 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (1.1%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.3%)
   LB compute        : 396.47 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (72.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0939491500161491e-17,-3.7470027081099033e-19,-1.705178966776577e-18)
    sum a = (5.71886288325274e-17,2.4741927256988206e-17,5.880452375039979e-17)
    sum e = 2.592000323483892
    sum de = 1.328147661294743e-18
Info: CFL hydro = 0.0067983536153853755 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0067983536153853755 cfl multiplier : 0.6301507395738623       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6608e+04 |  512 |      1 | 3.083e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 560.5589956952912 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3959414104797672, dt = 0.0067983536153853755 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.47 us    (1.2%)
   patch tree reduce : 1162.00 ns (0.3%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.2%)
   LB compute        : 372.03 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0819470319667346e-17,-3.454268121538817e-19,-1.0604310398537597e-18)
    sum a = (1.9390739014468748e-17,-6.45187028802674e-18,-2.785076856637314e-17)
    sum e = 2.5920004248794117
    sum de = 1.1655173354219173e-18
Info: CFL hydro = 0.008138511706104114 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008138511706104114 cfl multiplier : 0.7534338263825747        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6356e+04 |  512 |      1 | 3.130e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 781.8118352295218 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4027397640951526, dt = 0.008138511706104114 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.90 us    (1.0%)
   patch tree reduce : 891.00 ns  (0.2%)
   gen split merge   : 652.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 387.46 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0759459729420273e-17,-4.508112633194728e-19,-1.5297211739505322e-18)
    sum a = (-4.4062409970679894e-17,-1.0979888873108301e-16,1.2066519658460174e-16)
    sum e = 2.59200052348758
    sum de = 3.415236843329339e-18
Info: CFL hydro = 0.00904452348057944 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00904452348057944 cfl multiplier : 0.8356225509217164         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6644e+04 |  512 |      1 | 3.076e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 952.4291952118745 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.41087827580125674, dt = 0.00904452348057944 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.56 us    (0.9%)
   patch tree reduce : 651.00 ns  (0.2%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 461.00 ns  (0.1%)
   LB compute        : 405.35 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.54 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1628881451536398e-17,-1.7329887525008303e-18,1.610040226140974e-20)
    sum a = (1.9648345450651304e-17,-3.910934076589711e-17,7.406185040248481e-18)
    sum e = 2.592000633568396
    sum de = -3.767602549387128e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011015025122766572
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.115757876715695e-17,-1.592476150946709e-18,-5.002102248033435e-19)
    sum a = (-3.0924481725369547e-17,-6.547887232422056e-17,5.234094407891021e-18)
    sum e = 2.592000237786924
    sum de = -3.1170812458958252e-18
Info: CFL hydro = 0.00482831106894063 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00482831106894063 cfl multiplier : 0.44520751697390554        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2612e+04 |  512 |      1 | 4.060e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 802.0522043257918 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4199227992818362, dt = 0.00482831106894063 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.89 us    (0.9%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 631.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 691.00 ns  (0.2%)
   LB compute        : 413.82 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1623026759804978e-17,-1.9788858052205426e-18,-5.238119508456374e-19)
    sum a = (-3.817259008886964e-17,-6.484656561722702e-17,-1.4916583593316267e-16)
    sum e = 2.5920003472027653
    sum de = 2.7376104855258987e-18
Info: CFL hydro = 0.0068367386643539045 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0068367386643539045 cfl multiplier : 0.6301383446492704       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6592e+04 |  512 |      1 | 3.086e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 563.2665021833488 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4247511103507768, dt = 0.0068367386643539045 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (0.8%)
   patch tree reduce : 832.00 ns  (0.2%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 331.00 ns  (0.1%)
   LB compute        : 364.15 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.74 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1947962150898884e-17,-2.1369624819689293e-18,-1.8166010687901966e-18)
    sum a = (2.357098891070386e-17,-1.4098097689263512e-17,1.0093488544971052e-16)
    sum e = 2.592000499500209
    sum de = -1.0842021724855044e-19
Info: CFL hydro = 0.008182067299972218 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008182067299972218 cfl multiplier : 0.7534255630995137        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7011e+04 |  512 |      1 | 3.010e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 817.7370926408109 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4315878490151307, dt = 0.008182067299972218 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (0.8%)
   patch tree reduce : 581.00 ns  (0.1%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 341.00 ns  (0.1%)
   LB compute        : 383.35 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.42 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1574725553020748e-17,-2.289184466985894e-18,-1.2743102471672595e-19)
    sum a = (8.94245615057354e-17,1.0208240502906918e-16,2.7241880626305282e-17)
    sum e = 2.5920006796387813
    sum de = 8.944667923005412e-19
Info: CFL hydro = 0.00908950878456607 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00908950878456607 cfl multiplier : 0.8356170420663425         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6973e+04 |  512 |      1 | 3.017e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 976.4600993630607 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4397699163151029, dt = 0.00908950878456607 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (0.8%)
   patch tree reduce : 531.00 ns  (0.1%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 401.00 ns  (0.1%)
   LB compute        : 359.73 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 1974.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0515026349633416e-17,-7.552552333534024e-19,-2.634611279139776e-19)
    sum a = (7.197758014609867e-17,8.599371215112229e-17,4.812556603228657e-17)
    sum e = 2.5920008873812277
    sum de = 2.710505431213761e-20
Info: CFL hydro = 0.009709123880991904 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009709123880991904 cfl multiplier : 0.8904113613775616        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6872e+04 |  512 |      1 | 3.035e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1078.310897168215 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.448859425099669, dt = 0.009709123880991904 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (0.8%)
   patch tree reduce : 531.00 ns  (0.1%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 310.00 ns  (0.1%)
   LB compute        : 364.65 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 1944.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.977858383275473e-18,-1.7564075194265172e-20,2.857821401400229e-19)
    sum a = (-7.038510399515196e-17,3.016337180028472e-17,8.565414003069982e-17)
    sum e = 2.592001119455427
    sum de = 7.860465750519907e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01092378974054227
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0743359327158864e-17,-3.688455790795686e-19,4.431269804219818e-19)
    sum a = (-4.3055402992875356e-17,-7.681355551625302e-17,-6.489340315107838e-17)
    sum e = 2.5920002930479873
    sum de = -2.710505431213761e-20
Info: CFL hydro = 0.005071814780510384 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005071814780510384 cfl multiplier : 0.4634704537925205        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2696e+04 |  512 |      1 | 4.033e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 866.707109000209 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.4585685489806609, dt = 0.005071814780510384 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (0.7%)
   patch tree reduce : 672.00 ns  (0.2%)
   gen split merge   : 631.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 631.00 ns  (0.1%)
   LB compute        : 418.62 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.30 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0937295990762208e-17,-1.2411946470614055e-18,-8.244137794308214e-19)
    sum a = (6.358195220323992e-18,-8.140363383368765e-17,-1.3711688034989678e-17)
    sum e = 2.5920005108230644
    sum de = -6.315477654728063e-18
Info: CFL hydro = 0.0070422096327478045 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0070422096327478045 cfl multiplier : 0.6423136358616803       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6883e+04 |  512 |      1 | 3.033e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 602.0578119480413 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4636403637611713, dt = 0.0070422096327478045 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (0.8%)
   patch tree reduce : 682.00 ns  (0.2%)
   gen split merge   : 391.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 361.00 ns  (0.1%)
   LB compute        : 378.02 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 1953.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0575036939880488e-17,-1.8208091284721562e-18,-6.293793611278353e-19)
    sum a = (7.57333648918057e-17,-8.421388586477008e-17,4.3254462511743696e-17)
    sum e = 2.592000789208744
    sum de = -1.3145951341386741e-18
Info: CFL hydro = 0.008366612576643031 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008366612576643031 cfl multiplier : 0.7615424239077869        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6543e+04 |  512 |      1 | 3.095e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 819.1373032212197 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4706825733939191, dt = 0.008366612576643031 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.48 us    (0.8%)
   patch tree reduce : 912.00 ns  (0.2%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 501.00 ns  (0.1%)
   LB compute        : 437.12 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.36 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.649995646315856e-18,-2.5965557828855344e-18,-1.9869360063512475e-19)
    sum a = (1.7513285743495088e-16,-2.3325091857984148e-17,-3.236473589129929e-17)
    sum e = 2.592001086286702
    sum de = 1.1519648082658485e-18
Info: CFL hydro = 0.009265305669221144 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009265305669221144 cfl multiplier : 0.8410282826051914        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6672e+04 |  512 |      1 | 3.071e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 980.7627379879935 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4790491859705621, dt = 0.009265305669221144 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 us    (0.8%)
   patch tree reduce : 671.00 ns  (0.2%)
   gen split merge   : 572.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 582.00 ns  (0.1%)
   LB compute        : 420.65 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.17 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.596462521519687e-18,-2.5731370159598477e-18,-9.045498725046563e-19)
    sum a = (2.4687416875184128e-17,-8.163782150294452e-17,4.355890648177763e-18)
    sum e = 2.5920013772080113
    sum de = -1.2332799712022613e-18
Info: CFL hydro = 0.00986764132021569 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00986764132021569 cfl multiplier : 0.8940188550701276         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7054e+04 |  512 |      1 | 3.002e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1111.0261126889231 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.48831449163978324, dt = 0.00986764132021569 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (0.8%)
   patch tree reduce : 501.00 ns  (0.1%)
   gen split merge   : 520.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 310.00 ns  (0.1%)
   LB compute        : 362.26 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.23 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.045810111906305e-18,-3.621126835884336e-18,-5.924216195732357e-19)
    sum a = (-5.169839166138668e-17,-7.142723912334503e-17,-2.812593907774996e-17)
    sum e = 2.5920016375520687
    sum de = 1.111307226797642e-18
Info: CFL hydro = 0.010267690020056605 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010267690020056605 cfl multiplier : 0.929345903380085         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6884e+04 |  512 |      1 | 3.032e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1171.4538546448662 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4981821329599989, dt = 0.0018178670400010866 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (0.8%)
   patch tree reduce : 491.00 ns  (0.1%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 311.00 ns  (0.1%)
   LB compute        : 369.14 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 1914.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.490766683494356e-18,-3.6152721441529144e-18,-7.48302786922339e-19)
    sum a = (2.264887496300494e-17,-6.936638763388459e-17,3.910934076589711e-17)
    sum e = 2.5920003821612663
    sum de = 1.6398557858843255e-18
Info: CFL hydro = 0.010531184240523997 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010531184240523997 cfl multiplier : 0.9528972689200567        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7033e+04 |  512 |      1 | 3.006e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 217.71495040437838 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 68                                                      [SPH][rank=0]
Info: time since start : 705.9027703520001 (s)                                        [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.1494501065853372 max=0.15057600934287713 delta=0.0011259027575399316
Number of particle pairs: 130816
Distance min=0.144958 max=1.992338 mean=0.806478
---------------- t = 0.5, dt = 0.010531184240523997 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.70 us   (1.7%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.1%)
   LB compute        : 603.24 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.18193169466186e-18,-4.361745339909184e-18,-4.1202393059880384e-19)
    sum a = (3.242328280861351e-17,-1.3086406958073838e-16,-3.740562547205339e-17)
    sum e = 2.5920018979833643
    sum de = -1.7279472123987727e-18
Info: CFL hydro = 0.010692085486205481 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010692085486205481 cfl multiplier : 0.9685981792800377        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4638e+04 |  512 |      1 | 3.498e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1083.896291523033 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.510531184240524, dt = 0.010692085486205481 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (0.8%)
   patch tree reduce : 1152.00 ns (0.3%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 621.00 ns  (0.2%)
   LB compute        : 396.91 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.907493019751466e-18,-6.169381411985641e-18,-1.1226371395001155e-18)
    sum a = (-4.882812904005718e-18,-1.7095699855751435e-17,-1.177963976362051e-16)
    sum e = 2.5920020370442516
    sum de = 6.860966872759833e-20
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010104953805733966
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.116066412683365e-18,-5.601476314037734e-18,-1.5324655606996362e-18)
    sum a = (5.834200310361748e-17,-1.8079288066630285e-17,6.31194315564576e-17)
    sum e = 2.592000351880899
    sum de = -1.4170861207564445e-18
Info: CFL hydro = 0.005402482285006626 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005402482285006626 cfl multiplier : 0.48953272642667917       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2629e+04 |  512 |      1 | 4.054e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 949.450599456018 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.5212232697267295, dt = 0.005402482285006626 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 us    (0.9%)
   patch tree reduce : 1333.00 ns (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 430.92 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.443508700036295e-18,-5.6058673328363005e-18,-1.8808197187192288e-19)
    sum a = (1.5975697327530459e-16,-3.081909727420395e-17,1.9788272583032284e-16)
    sum e = 2.5920007758827515
    sum de = 7.411538288475128e-19
Info: CFL hydro = 0.007279527016576601 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007279527016576601 cfl multiplier : 0.6596884842844527        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5216e+04 |  512 |      1 | 3.365e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 577.9950115566351 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5266257520117361, dt = 0.007279527016576601 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.2%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 426.56 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.9812994401137185e-18,-5.886892535944543e-18,1.6942014197801614e-18)
    sum a = (6.945420800985591e-17,-7.522107936530631e-17,-1.4696447184214812e-16)
    sum e = 2.5920011239638696
    sum de = -9.181837148236616e-19
Info: CFL hydro = 0.008532099833937165 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008532099833937165 cfl multiplier : 0.773125656189635         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5568e+04 |  512 |      1 | 3.289e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 796.8456284234696 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5339052790283128, dt = 0.008532099833937165 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.2%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 381.42 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.838591329160314e-18,-6.719722434739283e-18,-1.0179845248009523e-18)
    sum a = (8.479935503791225e-17,8.650892502348739e-17,1.3676559884601148e-17)
    sum e = 2.5920013951147687
    sum de = -1.4399560103323106e-18
Info: CFL hydro = 0.009370805595837682 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009370805595837682 cfl multiplier : 0.8487504374597566        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6020e+04 |  512 |      1 | 3.196e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 961.0627098713185 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.54243737886225, dt = 0.009370805595837682 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.10 us    (0.9%)
   patch tree reduce : 1152.00 ns (0.3%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 426.69 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.786210490437259e-18,-5.244340118421009e-18,-1.0245710529988016e-19)
    sum a = (3.053807207109571e-17,3.910934076589711e-17,-8.869857973103912e-18)
    sum e = 2.592001562483982
    sum de = -1.4026865606531214e-18
Info: CFL hydro = 0.009915284880026149 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009915284880026149 cfl multiplier : 0.8991669583065045        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5587e+04 |  512 |      1 | 3.285e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1026.994686067349 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5518081844580877, dt = 0.009915284880026149 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.19 us    (1.0%)
   patch tree reduce : 1062.00 ns (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.2%)
   LB compute        : 392.13 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (72.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.866712501744308e-18,-5.062844674746936e-18,-2.363831786561521e-19)
    sum a = (-9.873352135869595e-17,5.175547490576804e-17,1.1984553974220269e-17)
    sum e = 2.592001622915688
    sum de = -7.318364664277155e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011205344441918017
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.26336786654813e-18,-5.032107543156971e-18,-3.9885087420310494e-19)
    sum a = (-5.748136341909849e-17,-1.3699978651526833e-16,1.0622167208318434e-16)
    sum e = 2.592000324817951
    sum de = -2.2632720350634905e-18
Info: CFL hydro = 0.005139236797849672 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005139236797849672 cfl multiplier : 0.46638898610216817       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1969e+04 |  512 |      1 | 4.278e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 834.4104198137803 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5617234693381138, dt = 0.005139236797849672 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (1.1%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 395.51 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.352651915452311e-18,-6.5631094309237524e-18,6.74021385579926e-19)
    sum a = (8.187200917220138e-17,-2.5296952033126985e-16,-8.308393036060568e-17)
    sum e = 2.5920006738585752
    sum de = 3.0899761915836876e-18
Info: CFL hydro = 0.007096719563111799 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007096719563111799 cfl multiplier : 0.6442593240681121        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6271e+04 |  512 |      1 | 3.147e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 587.9626475220392 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5668627061359635, dt = 0.007096719563111799 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.10 us    (1.0%)
   patch tree reduce : 851.00 ns  (0.2%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 691.00 ns  (0.2%)
   LB compute        : 382.92 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.452493061746221e-18,-8.929868563350985e-18,-5.898601919407387e-19)
    sum a = (6.078340955562034e-17,5.87811049834741e-17,2.634611279139776e-18)
    sum e = 2.592000936647684
    sum de = 8.809142651444724e-19
Info: CFL hydro = 0.00840105519023184 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00840105519023184 cfl multiplier : 0.7628395493787415         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5429e+04 |  512 |      1 | 3.319e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 769.8674193560992 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5739594256990752, dt = 0.00840105519023184 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.2%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 412.24 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.1509764375780024e-18,-7.414967077845614e-18,-7.318364664277155e-22)
    sum a = (1.0426035035315805e-16,-7.479954156064394e-17,-2.119398406774664e-18)
    sum e = 2.5920011068328552
    sum de = 5.149960319306146e-19
Info: CFL hydro = 0.009250437354603281 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009250437354603281 cfl multiplier : 0.8418930329191611        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5831e+04 |  512 |      1 | 3.234e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 935.1194185139486 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.582360480889307, dt = 0.009250437354603281 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.23 us    (1.0%)
   patch tree reduce : 1212.00 ns (0.3%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.3%)
   LB compute        : 421.68 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.775123880693897e-18,-8.419046709784439e-18,-6.952446431063297e-20)
    sum a = (-1.4050089217065854e-16,-1.6824042159413465e-16,-7.383059007909365e-17)
    sum e = 2.5920011710543225
    sum de = 1.666960840196463e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010807455892810312
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.1568311293094236e-18,-9.048426070912274e-18,-4.9033043250656936e-20)
    sum a = (-1.1320631931877045e-16,1.739077631901509e-16,1.8969201209806386e-17)
    sum e = 2.592000317734102
    sum de = -2.927345865710862e-18
Info: CFL hydro = 0.004899774315111353 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004899774315111353 cfl multiplier : 0.44729767763972034       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2053e+04 |  512 |      1 | 4.248e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 783.9543773441732 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5916109182439103, dt = 0.004899774315111353 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.64 us    (0.9%)
   patch tree reduce : 852.00 ns  (0.2%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 372.38 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.448102042947655e-18,-6.5777461602523065e-18,3.973872012702495e-19)
    sum a = (-1.3292492107019883e-16,1.7845100397373413e-17,-1.3670705192869726e-17)
    sum e = 2.5920005572277747
    sum de = -1.2332799712022613e-18
Info: CFL hydro = 0.00690698990830525 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00690698990830525 cfl multiplier : 0.6315317850931469         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6279e+04 |  512 |      1 | 3.145e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 560.8447453135947 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5965106925590217, dt = 0.00690698990830525 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 us    (0.9%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.2%)
   LB compute        : 405.83 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.437544945557926e-18,-6.721186107672139e-18,-3.220080452281948e-20)
    sum a = (-2.90580060013923e-16,-6.838279942300574e-18,-7.664523312897464e-17)
    sum e = 2.592000740602624
    sum de = 1.2197274440461925e-19
Info: CFL hydro = 0.008234549815059231 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008234549815059231 cfl multiplier : 0.7543545233954312        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6327e+04 |  512 |      1 | 3.136e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 792.8953874423256 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.603417682467327, dt = 0.008234549815059231 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.23 us    (1.0%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 392.57 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (73.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.3546451007388e-18,-6.847061979897706e-18,-8.013609307383485e-19)
    sum a = (1.1504469252243687e-16,-5.081872422874056e-17,4.513674590339578e-17)
    sum e = 2.5920008529201324
    sum de = 3.604972223514302e-18
Info: CFL hydro = 0.009111941008226744 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009111941008226744 cfl multiplier : 0.8362363489302874        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6047e+04 |  512 |      1 | 3.191e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 929.0979038088587 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6116522322823862, dt = 0.009111941008226744 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.68 us    (0.9%)
   patch tree reduce : 1072.00 ns (0.3%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 413.81 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.6497775208219635e-18,-7.23347163417154e-18,2.371150151225798e-19)
    sum a = (1.3875619403469486e-17,-3.4425587380759735e-17,-5.3121081752122154e-17)
    sum e = 2.592000897373693
    sum de = 5.149960319306146e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011189854858766137
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.208900581172738e-18,-7.423749115442745e-18,-3.300582463588997e-19)
    sum a = (4.724736227257331e-17,-4.3605744015629e-17,-4.748228177829661e-17)
    sum e = 2.592000318294939
    sum de = 7.589415207398531e-19
Info: CFL hydro = 0.004848159937683045 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004848159937683045 cfl multiplier : 0.44541211631009575       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2082e+04 |  512 |      1 | 4.238e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 774.0858991341901 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.620764173290613, dt = 0.004848159937683045 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.1%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 399.03 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.810781543436061e-18,-7.611099250848241e-18,-4.522749362523282e-19)
    sum a = (1.5729214805637602e-16,2.6486625392951878e-17,-6.915708240448626e-17)
    sum e = 2.5920004815304294
    sum de = -2.3310346708438345e-18
Info: CFL hydro = 0.006856623185041138 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006856623185041138 cfl multiplier : 0.6302747442067305        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6244e+04 |  512 |      1 | 3.152e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 553.7191954337618 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.625612333228296, dt = 0.006856623185041138 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.16 us    (1.1%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 377.67 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.355890648177763e-18,-7.189561446185877e-18,-1.0919000079101515e-18)
    sum a = (4.742300302451596e-17,-1.0243368653295448e-16,1.7913417331514442e-16)
    sum e = 2.5920006158527333
    sum de = -1.2739375526704677e-18
Info: CFL hydro = 0.008193895506803802 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008193895506803802 cfl multiplier : 0.7535164961378203        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5530e+04 |  512 |      1 | 3.297e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 748.710274862436 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.6324689564133371, dt = 0.008193895506803802 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.2%)
   patch tree reduce : 1974.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 425.52 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.41443756549198e-18,-8.688362529429838e-18,1.1811840568143329e-18)
    sum a = (-1.6393136847980826e-18,-2.4917568008930855e-17,1.9626573315775082e-17)
    sum e = 2.5920007151807387
    sum de = -5.963111948670274e-19
Info: CFL hydro = 0.00908737718982347 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00908737718982347 cfl multiplier : 0.8356776640918803         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6147e+04 |  512 |      1 | 3.171e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 930.2671343110229 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6406628519201409, dt = 0.00908737718982347 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.2%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 407.24 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.800847219765814e-18,-8.515649123352897e-18,7.201270829648721e-19)
    sum a = (3.8055496254241206e-17,8.053128476570581e-17,1.1184675012326437e-16)
    sum e = 2.5920007883572778
    sum de = 1.6534083130403943e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.0112056156672946
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.827193332557211e-18,-8.061910514167714e-18,1.304132583174189e-18)
    sum a = (-2.2993716305985677e-16,2.3746629662646512e-17,-7.882930758346986e-17)
    sum e = 2.592000328863609
    sum de = 3.3068166260807885e-18
Info: CFL hydro = 0.004846046788455708 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004846046788455708 cfl multiplier : 0.44522588803062674       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2104e+04 |  512 |      1 | 4.230e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 773.4184321038423 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6497502291099644, dt = 0.004846046788455708 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.08 us    (0.9%)
   patch tree reduce : 1132.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 414.27 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.981719889720405e-18,-8.170222311199016e-18,-1.2880321809127792e-19)
    sum a = (-1.9740264110834627e-16,-6.847940183657419e-17,1.1865722027984069e-17)
    sum e = 2.592000457537718
    sum de = 3.279711571768651e-18
Info: CFL hydro = 0.006862457099014261 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006862457099014261 cfl multiplier : 0.6301505920204179        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6350e+04 |  512 |      1 | 3.131e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 557.1123746736964 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6545962758984201, dt = 0.006862457099014261 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (0.8%)
   patch tree reduce : 561.00 ns  (0.1%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 421.00 ns  (0.1%)
   LB compute        : 396.29 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.54 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.360499792470221e-18,-8.700071912892682e-18,3.6152721441529143e-19)
    sum a = (7.670817106508743e-17,9.091750789724795e-17,-1.5994633596099276e-16)
    sum e = 2.5920005938199093
    sum de = 4.119968255444917e-18
Info: CFL hydro = 0.008210794760885822 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008210794760885822 cfl multiplier : 0.753433728013612         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6337e+04 |  512 |      1 | 3.134e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 788.2959403813951 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6614587329974343, dt = 0.008210794760885822 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.56 us    (0.9%)
   patch tree reduce : 581.00 ns  (0.2%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 681.00 ns  (0.2%)
   LB compute        : 369.00 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.80 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.765096295657802e-18,-7.373984235725662e-18,-1.6495593953280706e-18)
    sum a = (4.622279121957451e-17,-7.931936357730151e-17,-6.650362633633597e-17)
    sum e = 2.5920007280113855
    sum de = 2.656295322589486e-18
Info: CFL hydro = 0.009099578968120092 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009099578968120092 cfl multiplier : 0.8356224853424079        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6163e+04 |  512 |      1 | 3.168e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 933.1427684896281 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6696695277583201, dt = 0.009099578968120092 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.62 us    (0.8%)
   patch tree reduce : 761.00 ns  (0.2%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 406.76 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 7.92 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.448942942161029e-18,-8.805456364058272e-18,-1.7944630156807582e-18)
    sum a = (-1.8818442897722277e-17,1.0598162972219605e-16,3.588239934674241e-17)
    sum e = 2.5920008625999027
    sum de = 2.9815559743351372e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011118130176803643
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.6099469647751264e-18,-7.804304077985158e-18,-1.3158419666370324e-18)
    sum a = (2.800372238785653e-17,-4.744642179144165e-17,-1.4553482930498158e-17)
    sum e = 2.592000346122698
    sum de = 2.1955093992831465e-18
Info: CFL hydro = 0.004848070715209546 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004848070715209546 cfl multiplier : 0.445207495114136         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2396e+04 |  512 |      1 | 4.130e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 793.1007377565965 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6787691067264402, dt = 0.004848070715209546 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.22 us    (0.8%)
   patch tree reduce : 831.00 ns  (0.2%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 591.00 ns  (0.2%)
   LB compute        : 372.81 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.73 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.48699843841527e-18,-8.957678349075238e-18,-1.854473605927831e-18)
    sum a = (1.5343797704571362e-16,1.6791255885717503e-17,1.5096903524666141e-16)
    sum e = 2.592000489458279
    sum de = 4.0657581468206416e-19
Info: CFL hydro = 0.0068620272645033365 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0068620272645033365 cfl multiplier : 0.6301383300760907       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6740e+04 |  512 |      1 | 3.059e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 570.6404455184386 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6836171774416497, dt = 0.0068620272645033365 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.26 us    (0.8%)
   patch tree reduce : 551.00 ns  (0.1%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 491.00 ns  (0.1%)
   LB compute        : 377.54 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.46 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.008688776231285e-18,-8.714708642221237e-18,-3.3664477455674912e-19)
    sum a = (-8.442904578589983e-17,-6.908536243077635e-17,3.688876596763882e-17)
    sum e = 2.5920006704625216
    sum de = 6.505213034913027e-19
Info: CFL hydro = 0.008207330095276482 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008207330095276482 cfl multiplier : 0.7534255533840604        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6794e+04 |  512 |      1 | 3.049e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 810.2675648856327 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6904792047061531, dt = 0.008207330095276482 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (0.8%)
   patch tree reduce : 451.00 ns  (0.1%)
   gen split merge   : 591.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 611.00 ns  (0.2%)
   LB compute        : 378.47 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.75 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.5953102354465716e-18,-9.467036529708927e-18,-3.132260076310622e-19)
    sum a = (1.673387990674957e-16,4.852368507002325e-17,6.487949825821626e-17)
    sum e = 2.5920008644527734
    sum de = -4.065758146820642e-18
Info: CFL hydro = 0.009110255710768258 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009110255710768258 cfl multiplier : 0.8356170355893736        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7103e+04 |  512 |      1 | 2.994e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 986.9828719332676 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6986865348014296, dt = 0.009110255710768258 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.64 us    (0.9%)
   patch tree reduce : 1162.00 ns (0.3%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.2%)
   LB compute        : 387.40 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 2.81 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.071938099203809e-18,-8.521503815084319e-18,4.2739249639378587e-19)
    sum a = (-4.084232951839795e-17,-6.229392002232714e-18,-5.041694600867175e-17)
    sum e = 2.5920010637013595
    sum de = -2.9544509200229996e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010405686110878632
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.988197355171309e-18,-8.506867085755765e-18,-9.660241356845845e-20)
    sum a = (1.1600486196639003e-16,-5.618162185472286e-17,4.776842983666985e-17)
    sum e = 2.592000363127704
    sum de = 1.2739375526704677e-18
Info: CFL hydro = 0.004862120794784566 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004862120794784566 cfl multiplier : 0.44520567852979126       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2959e+04 |  512 |      1 | 3.951e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 830.1007337986197 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7077967905121979, dt = 0.004862120794784566 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.56 us    (0.9%)
   patch tree reduce : 571.00 ns  (0.1%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 601.00 ns  (0.2%)
   LB compute        : 370.74 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.42 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.7470027081099036e-18,-9.153810522077866e-18,3.9080067307240005e-19)
    sum a = (-2.8518203423755216e-17,-2.0421164759198974e-17,2.404229159508331e-17)
    sum e = 2.592000558850455
    sum de = 2.710505431213761e-18
Info: CFL hydro = 0.006888229172304549 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006888229172304549 cfl multiplier : 0.6301371190198609        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6545e+04 |  512 |      1 | 3.095e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 565.6312290929377 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7126589113069824, dt = 0.006888229172304549 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.2%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 1102.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 432.08 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.307589441393533e-18,-9.367506770274759e-18,5.722961167464735e-19)
    sum a = (6.70245109413159e-17,5.011616122096995e-18,7.492688110580236e-17)
    sum e = 2.592000803545502
    sum de = 1.1926223897340549e-18
Info: CFL hydro = 0.00824917031988519 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00824917031988519 cfl multiplier : 0.7534247460132407         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4773e+04 |  512 |      1 | 3.466e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 715.4821394888804 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.719547140479287, dt = 0.00824917031988519 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.1%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 442.00 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (73.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.148360478572032e-18,-9.361652078543337e-18,1.2953505455770564e-18)
    sum a = (-9.237532613837195e-17,5.8265892111109e-17,-9.133319101017889e-19)
    sum e = 2.592001054883388
    sum de = 1.3688052427629493e-18
Info: CFL hydro = 0.009170284244962367 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009170284244962367 cfl multiplier : 0.8356164973421606        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5587e+04 |  512 |      1 | 3.285e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 904.0721389270203 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7277963107991722, dt = 0.009170284244962367 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (1.1%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 397.34 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.783283144571549e-18,-8.503939739890054e-18,1.008470650737392e-18)
    sum a = (-5.578350281698618e-17,-5.152128723651117e-19,5.333038698152048e-17)
    sum e = 2.5920012917813926
    sum de = -1.531435568635775e-18
Info: CFL hydro = 0.009801350395668965 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009801350395668965 cfl multiplier : 0.8904109982281071        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6090e+04 |  512 |      1 | 3.182e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1037.4368951199122 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7369665950441345, dt = 0.009801350395668965 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.1%)
   patch tree reduce : 1894.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 425.57 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.200429930435346e-18,-8.796674326461141e-18,1.6612687787909141e-18)
    sum a = (1.492009640835512e-16,-2.1076890233118208e-18,-3.325464903447539e-17)
    sum e = 2.5920015012377733
    sum de = -2.236166980751353e-18
Info: CFL hydro = 0.010241340700341297 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010241340700341297 cfl multiplier : 0.9269406654854047        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5815e+04 |  512 |      1 | 3.237e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1089.9254055152596 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7467679454398035, dt = 0.010241340700341297 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.3%)
   patch tree reduce : 1934.00 ns (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 380.96 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7531687867010656e-18,-8.722027006885513e-18,9.250412935646324e-19)
    sum a = (-4.983513601786171e-17,7.592364237307692e-17,4.656236333999697e-17)
    sum e = 2.592001673267887
    sum de = 3.6591823321385775e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011141340728124647
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.846532467544073e-18,-8.288779818760306e-18,1.3012052373084782e-18)
    sum a = (7.456535389138708e-17,-8.945968965612394e-17,-7.154433295797347e-17)
    sum e = 2.592000408276644
    sum de = -1.1519648082658485e-18
Info: CFL hydro = 0.005253255998179747 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005253255998179747 cfl multiplier : 0.47564688849513487       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1712e+04 |  512 |      1 | 4.372e-02 | 0.1% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 843.3506006777685 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7570092861401448, dt = 0.005253255998179747 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.1%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 423.99 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7736602077610417e-18,-9.314814544691963e-18,3.205443722953394e-19)
    sum a = (9.498651865058605e-17,-5.779751677259526e-17,-7.956526063002122e-18)
    sum e = 2.5920007355603967
    sum de = -1.6195269951502222e-18
Info: CFL hydro = 0.007182416512720834 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007182416512720834 cfl multiplier : 0.6504312589967566        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6037e+04 |  512 |      1 | 3.193e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 592.3597990209096 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7622625421383246, dt = 0.007182416512720834 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.99 us    (0.9%)
   patch tree reduce : 1273.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 431.56 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.946685000697723e-18,-9.813927014795665e-18,4.405655527894848e-19)
    sum a = (5.205991887580197e-17,-1.0308941200687371e-16,9.062477331067686e-17)
    sum e = 2.5920010379939304
    sum de = -1.734723475976807e-18
Info: CFL hydro = 0.008469036535233848 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008469036535233848 cfl multiplier : 0.7669541726645045        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5911e+04 |  512 |      1 | 3.218e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 803.5515497439527 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7694449586510453, dt = 0.008469036535233848 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (1.0%)
   patch tree reduce : 1292.00 ns (0.3%)
   gen split merge   : 1082.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 401.46 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 21.75 us   (5.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7329887525008303e-18,-1.0942418846027202e-17,1.5090467937739493e-18)
    sum a = (1.30817232046887e-16,-4.805530973150951e-17,3.26633251696018e-17)
    sum e = 2.5920012919052735
    sum de = -2.4462311516704194e-18
Info: CFL hydro = 0.009329655956266218 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009329655956266218 cfl multiplier : 0.8446361151096697        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6035e+04 |  512 |      1 | 3.193e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 954.850571586295 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.7779139951862792, dt = 0.009329655956266218 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.1%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 445.62 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.60 us    (75.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.4893030105615e-20,-1.0974253732316807e-17,1.620285936670962e-18)
    sum a = (2.9367133724811365e-17,1.2458784004465428e-17,6.444259188775892e-17)
    sum e = 2.592001471874416
    sum de = 1.6940658945086007e-20
Info: CFL hydro = 0.009908853959285502 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009908853959285502 cfl multiplier : 0.8964240767397799        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3814e+04 |  512 |      1 | 3.706e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 906.1923441935013 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7872436511425455, dt = 0.009908853959285502 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.3%)
   patch tree reduce : 1973.00 ns (0.5%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.3%)
   LB compute        : 390.05 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1563016169557905e-19,-1.0737504635427442e-17,2.2160008203431225e-18)
    sum a = (-1.1732802229769134e-17,-2.866457071704076e-17,1.082064125801363e-16)
    sum e = 2.592001574412046
    sum de = -2.3310346708438345e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01061527931097127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.1981253582891166e-19,-1.0843986841292674e-17,2.456043181331413e-18)
    sum a = (-1.0177796105903525e-16,1.617300043887937e-16,-1.3699978651526834e-17)
    sum e = 2.592000397446507
    sum de = -5.920760301307559e-19
Info: CFL hydro = 0.005152608911468877 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005152608911468877 cfl multiplier : 0.4654746922465933        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2505e+04 |  512 |      1 | 4.094e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 871.2196075470032 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.797152505101831, dt = 0.005152608911468877 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (1.0%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 433.13 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4563545681911537e-18,-9.251144772112752e-18,1.9408303089663015e-18)
    sum a = (1.36203548439795e-16,-7.55957796361173e-17,1.0749214018890285e-16)
    sum e = 2.5920007143807706
    sum de = 1.3879693631945779e-18
Info: CFL hydro = 0.0071303507762738375 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0071303507762738375 cfl multiplier : 0.6436497948310622       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6063e+04 |  512 |      1 | 3.187e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 581.960846313879 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.8023051140132998, dt = 0.0071303507762738375 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.53 us    (0.9%)
   patch tree reduce : 851.00 ns  (0.2%)
   gen split merge   : 582.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 732.00 ns  (0.2%)
   LB compute        : 392.15 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.65 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.903561180551961e-19,-1.0284497862708685e-17,2.8570895649338013e-18)
    sum a = (-1.2739809207573672e-17,-1.0444770048856356e-16,2.1486718654317728e-17)
    sum e = 2.592000975400038
    sum de = 5.658180087658726e-19
Info: CFL hydro = 0.008457024108943197 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008457024108943197 cfl multiplier : 0.7624331965540415        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7035e+04 |  512 |      1 | 3.006e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 854.0580716473761 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8094354647895737, dt = 0.008457024108943197 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (0.7%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 601.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 582.00 ns  (0.1%)
   LB compute        : 415.44 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.62 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.138278362162463e-19,-1.1060976353588491e-17,2.7458504220367886e-18)
    sum a = (1.4168353990040571e-16,-3.0444397003392966e-17,6.962399407006714e-17)
    sum e = 2.592001164610255
    sum de = 1.6229151269392394e-18
Info: CFL hydro = 0.009310637098300843 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009310637098300843 cfl multiplier : 0.8416221310360278        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6661e+04 |  512 |      1 | 3.073e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 990.7288823204643 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.817892488898517, dt = 0.009310637098300843 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.88 us    (0.9%)
   patch tree reduce : 1192.00 ns (0.3%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 406.60 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 2.90 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4746504798518467e-18,-1.1081467774648468e-17,3.531842786980155e-18)
    sum a = (5.997546209668414e-17,3.1474822748123185e-17,8.520918345911176e-17)
    sum e = 2.592001259199882
    sum de = -1.951563910473908e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010463261835319594
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.791971920802833e-19,-1.1325901154435324e-17,3.748466381042759e-18)
    sum a = (3.079567850727827e-17,8.360499792470222e-17,-7.792594694522315e-17)
    sum e = 2.5920003907031135
    sum de = -1.0232158002831948e-18
Info: CFL hydro = 0.00493525317431964 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00493525317431964 cfl multiplier : 0.4472073770120093         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2706e+04 |  512 |      1 | 4.030e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 831.7940361669911 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8272031259968178, dt = 0.00493525317431964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.76 us    (0.8%)
   patch tree reduce : 791.00 ns  (0.2%)
   gen split merge   : 621.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 446.70 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0271324806312987e-18,-1.008763385323963e-17,2.527763155041329e-18)
    sum a = (5.2551712981241395e-17,1.0547812623329378e-16,1.3325278380715843e-17)
    sum e = 2.592000634227377
    sum de = -1.734723475976807e-18
Info: CFL hydro = 0.00695993578465017 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00695993578465017 cfl multiplier : 0.6314715846746729         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6659e+04 |  512 |      1 | 3.073e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 578.0813015210803 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8321383791711374, dt = 0.00695993578465017 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.29 us    (1.1%)
   patch tree reduce : 1122.00 ns (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 389.98 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.754212010027234e-18,-9.282613740169144e-18,2.8907540423894764e-18)
    sum a = (6.140400687915104e-17,-5.554931514772931e-17,6.81017742198975e-17)
    sum e = 2.592000835700532
    sum de = -8.876905287225068e-19
Info: CFL hydro = 0.008301303531821274 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008301303531821274 cfl multiplier : 0.7543143897831154        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6594e+04 |  512 |      1 | 3.085e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 812.0733508631846 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8390983149557876, dt = 0.008301303531821274 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.05 us    (0.9%)
   patch tree reduce : 1132.00 ns (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 691.00 ns  (0.2%)
   LB compute        : 416.72 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.79 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.052801288329742e-18,-1.0623338146664719e-17,3.577216647898673e-18)
    sum a = (-9.817147095247946e-17,-1.3479842242425378e-16,3.2961914447904304e-17)
    sum e = 2.5920009716530235
    sum de = 4.3503612170980865e-18
Info: CFL hydro = 0.009189634447877579 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009189634447877579 cfl multiplier : 0.8362095931887437        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6731e+04 |  512 |      1 | 3.060e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 976.5661487993826 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8473996184876088, dt = 0.009189634447877579 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.28 us    (1.0%)
   patch tree reduce : 1903.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 418.87 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.508112633194728e-19,-1.2081156387788728e-17,3.741148016378482e-18)
    sum a = (-1.3006783150526502e-16,-5.152128723651117e-18,-1.2004459926107102e-16)
    sum e = 2.5920010380138034
    sum de = 8.944667923005412e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010906009086542144
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.29326409892472e-19,-1.0910218041504383e-17,3.2493539109390567e-18)
    sum a = (-1.1119230536316138e-16,9.20357540179495e-18,-1.3924798814013428e-16)
    sum e = 2.5920003889799754
    sum de = 5.692061405548898e-19
Info: CFL hydro = 0.0048907415819655735 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0048907415819655735 cfl multiplier : 0.4454031977295812       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2361e+04 |  512 |      1 | 4.142e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 798.7218207187682 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8565892529354864, dt = 0.0048907415819655735 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.03 us    (1.0%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 402.36 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.318364664277155e-21,-1.1179533861149782e-17,2.441406452002859e-18)
    sum a = (5.676709102786503e-17,3.754028338187609e-17,-8.008047350238634e-17)
    sum e = 2.5920005721066355
    sum de = 7.589415207398531e-19
Info: CFL hydro = 0.006916617645906708 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006916617645906708 cfl multiplier : 0.6302687984863874        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6363e+04 |  512 |      1 | 3.129e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 562.6748407394857 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8614799945174519, dt = 0.006916617645906708 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.44 us    (1.1%)
   patch tree reduce : 1853.00 ns (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.3%)
   LB compute        : 382.85 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.382143499603312e-19,-1.1167824477686938e-17,2.180872669954592e-18)
    sum a = (-7.714141825321264e-17,8.852293897909646e-18,-8.758618830206899e-17)
    sum e = 2.592000726449551
    sum de = -1.260385025514399e-18
Info: CFL hydro = 0.008264295382955974 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008264295382955974 cfl multiplier : 0.7535125323242582        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6455e+04 |  512 |      1 | 3.112e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 800.2489957129859 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8683966121633586, dt = 0.008264295382955974 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.47 us    (1.1%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 752.00 ns  (0.2%)
   LB compute        : 406.32 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.6299088734814687e-19,-1.0687739755710357e-17,1.1621563086872121e-18)
    sum a = (3.1287472612717695e-17,1.2333493601413005e-16,-1.0628607369222998e-16)
    sum e = 2.5920008386826705
    sum de = -1.1926223897340549e-18
Info: CFL hydro = 0.00916236998262112 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00916236998262112 cfl multiplier : 0.8356750215495055         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5363e+04 |  512 |      1 | 3.333e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 892.709820406466 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.8766609075463145, dt = 0.00916236998262112 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.09 us    (0.6%)
   patch tree reduce : 1403.00 ns (0.2%)
   gen split merge   : 671.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.1%)
   LB compute        : 676.96 us  (97.8%)
   LB move op cnt    : 0
   LB apply          : 2.90 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 19.33 us   (93.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.927345865710862e-19,-9.58120301847165e-18,1.844227895397843e-19)
    sum a = (-4.2668993338601526e-17,8.101722417941381e-17,-6.405032754175366e-17)
    sum e = 2.592000911987915
    sum de = 4.607859233063394e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011262558386937644
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.220080452281948e-20,-9.314814544691963e-18,5.0643083476797915e-19)
    sum a = (2.7962007709270153e-17,2.2845007136007567e-17,-5.895674573541676e-17)
    sum e = 2.592000394994408
    sum de = -6.369687763352339e-19
Info: CFL hydro = 0.004882968059432594 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004882968059432594 cfl multiplier : 0.4452250071831685        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2036e+04 |  512 |      1 | 4.254e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 775.4151459624483 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8858232775289356, dt = 0.004882968059432594 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.2%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 402.28 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.239949099622443e-19,-9.58120301847165e-18,1.1709383462843449e-19)
    sum a = (1.372339741845252e-17,1.9179970112137567e-17,-2.818448599506418e-17)
    sum e = 2.592000540327953
    sum de = 3.767602549387128e-18
Info: CFL hydro = 0.006912418120776771 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006912418120776771 cfl multiplier : 0.630150004788779         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6457e+04 |  512 |      1 | 3.111e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 565.018611458269 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.8907062455883682, dt = 0.006912418120776771 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (1.0%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 682.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 401.59 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.854691731421724e-19,-9.262122319109167e-18,4.683753385137379e-20)
    sum a = (-4.426146948954823e-18,4.659456414451979e-17,1.738843444232252e-16)
    sum e = 2.5920006820978494
    sum de = -2.981555974335137e-19
Info: CFL hydro = 0.008269016203785895 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008269016203785895 cfl multiplier : 0.7534333365258528        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5984e+04 |  512 |      1 | 3.203e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 776.8893529681122 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.897618663709145, dt = 0.008269016203785895 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.26 us    (1.1%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 373.88 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1908069936248396e-19,-8.978169770135213e-18,2.2950391587173157e-18)
    sum a = (-5.2294106545058836e-17,-7.790252817829746e-17,1.9952789420685236e-17)
    sum e = 2.5920008085566595
    sum de = 3.2255014631443757e-18
Info: CFL hydro = 0.009174528715332518 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009174528715332518 cfl multiplier : 0.8356222243505685        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6102e+04 |  512 |      1 | 3.180e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 936.2142570967181 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.905887679912931, dt = 0.009174528715332518 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.54 us    (0.9%)
   patch tree reduce : 642.00 ns  (0.2%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 491.00 ns  (0.1%)
   LB compute        : 370.45 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.75 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.220080452281948e-20,-1.0236928492390884e-17,1.9027748127120604e-18)
    sum a = (-1.0655538951187538e-17,-1.0450624740587777e-17,4.707172152063066e-18)
    sum e = 2.5920009218616076
    sum de = -3.279711571768651e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011207630203019393
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0491421059976034e-20,-1.0113979966031028e-17,1.6041855344095523e-18)
    sum a = (9.772651438089141e-17,2.3857868805543526e-17,-2.8500639348560954e-17)
    sum e = 2.5920004074298055
    sum de = -4.3503612170980865e-18
Info: CFL hydro = 0.00488428577080239 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00488428577080239 cfl multiplier : 0.4452074081168562         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2722e+04 |  512 |      1 | 4.025e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 820.6584626718764 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9150622086282635, dt = 0.00488428577080239 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (0.9%)
   patch tree reduce : 972.00 ns  (0.2%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 711.00 ns  (0.2%)
   LB compute        : 376.35 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.90 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.786740002790892e-19,-9.455327146246083e-18,1.5134378125725156e-18)
    sum a = (-2.1528872434783962e-16,-9.80192489674625e-17,1.030308650895595e-16)
    sum e = 2.5920005507260275
    sum de = 1.9786689647860456e-18
Info: CFL hydro = 0.0069104959202505025 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0069104959202505025 cfl multiplier : 0.6301382720779042       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6834e+04 |  512 |      1 | 3.041e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 578.1333542519566 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9199464943990658, dt = 0.0069104959202505025 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.36 us    (0.8%)
   patch tree reduce : 682.00 ns  (0.2%)
   gen split merge   : 641.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 601.00 ns  (0.1%)
   LB compute        : 418.78 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.81 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1621563086872121e-18,-1.0687739755710357e-17,2.5643549783627152e-18)
    sum a = (-2.2599110083287854e-17,-1.4188259941927405e-16,-8.99866119119519e-17)
    sum e = 2.592000715680563
    sum de = -1.0842021724855044e-18
Info: CFL hydro = 0.008260605805455646 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008260605805455646 cfl multiplier : 0.7534255147186029        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7027e+04 |  512 |      1 | 3.007e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 827.3496014534251 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9268569903193163, dt = 0.008260605805455646 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (0.8%)
   patch tree reduce : 562.00 ns  (0.1%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 711.00 ns  (0.2%)
   LB compute        : 407.42 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.95 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.138021506676197e-19,-1.1873314831323256e-17,1.1328828500301036e-18)
    sum a = (-1.7283049991156928e-17,-5.227068777813315e-17,-2.047971167651319e-17)
    sum e = 2.592000881475888
    sum de = -5.014435047745458e-18
Info: CFL hydro = 0.009163230073119484 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009163230073119484 cfl multiplier : 0.835617009812402         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6401e+04 |  512 |      1 | 3.122e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 952.5889790514127 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.935117596124772, dt = 0.009163230073119484 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.60 us    (0.9%)
   patch tree reduce : 1192.00 ns (0.3%)
   gen split merge   : 632.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.2%)
   LB compute        : 375.96 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 2.80 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.640372709505349e-19,-1.2005045395280245e-17,1.2324126094642728e-18)
    sum a = (4.5666595505089444e-18,-8.437781723324989e-17,1.0779658415893677e-16)
    sum e = 2.592001043200418
    sum de = 1.7076184216646695e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010951070606436974
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.430756093247282e-19,-1.202260947047451e-17,1.7681169028893606e-18)
    sum a = (-6.93429688669589e-17,-2.910952728862881e-17,-1.4051260155412137e-17)
    sum e = 2.5920004213422017
    sum de = 1.1926223897340549e-18
Info: CFL hydro = 0.004886856373452958 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004886856373452958 cfl multiplier : 0.44520566993746735       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2598e+04 |  512 |      1 | 4.064e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 811.6646256692381 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9442808261978914, dt = 0.004886856373452958 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.63 us    (0.9%)
   patch tree reduce : 1262.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 751.00 ns  (0.2%)
   LB compute        : 372.08 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 2.75 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5749120757524437e-18,-1.1826477297471882e-17,1.1065367372387058e-18)
    sum a = (-5.152128723651117e-18,8.353474162392516e-17,5.429641111720507e-17)
    sum e = 2.5920005951088467
    sum de = 3.686287386450715e-18
Info: CFL hydro = 0.00692058032559971 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00692058032559971 cfl multiplier : 0.6301371132916449         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6652e+04 |  512 |      1 | 3.075e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 572.1839481908279 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9491676825713444, dt = 0.00692058032559971 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (0.8%)
   patch tree reduce : 501.00 ns  (0.1%)
   gen split merge   : 591.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 552.00 ns  (0.1%)
   LB compute        : 363.00 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.44 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3231603313013097e-18,-1.104194860546137e-17,1.5456386170953351e-18)
    sum a = (-8.643866872271033e-17,1.0358120611231313e-16,7.734047777208098e-17)
    sum e = 2.5920008041993174
    sum de = -1.2197274440461925e-18
Info: CFL hydro = 0.008283407536551738 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008283407536551738 cfl multiplier : 0.7534247421944299        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6691e+04 |  512 |      1 | 3.068e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 812.1926777333078 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9560882628969442, dt = 0.008283407536551738 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (0.8%)
   patch tree reduce : 481.00 ns  (0.1%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 441.00 ns  (0.1%)
   LB compute        : 361.60 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.26 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.523372136242763e-18,-1.0403787206736403e-17,2.262838354194496e-18)
    sum a = (8.465884243635813e-18,-1.4908387024892278e-16,-1.2434194299193458e-16)
    sum e = 2.5920010146828676
    sum de = -1.260385025514399e-18
Info: CFL hydro = 0.009202448904568294 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009202448904568294 cfl multiplier : 0.8356164947962865        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6872e+04 |  512 |      1 | 3.035e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 982.6807895366146 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9643716704334959, dt = 0.009202448904568294 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (0.7%)
   patch tree reduce : 491.00 ns  (0.1%)
   gen split merge   : 611.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 561.00 ns  (0.1%)
   LB compute        : 455.17 us  (97.7%)
   LB move op cnt    : 0
   LB apply          : 2.31 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8383732036664213e-18,-1.2637352102273791e-17,3.3371742869103825e-19)
    sum a = (1.209228030207843e-16,7.367544074821097e-17,1.6735050845095856e-16)
    sum e = 2.59200121102683
    sum de = 4.472333961502706e-19
Info: CFL hydro = 0.009828856217132326 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009828856217132326 cfl multiplier : 0.8904109965308576        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4764e+04 |  512 |      1 | 3.468e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 955.3230526492896 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9735741193380643, dt = 0.009828856217132326 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.91 us    (1.0%)
   patch tree reduce : 902.00 ns  (0.2%)
   gen split merge   : 682.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 381.99 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.58 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.49 us    (88.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.854691731421724e-20,-1.0828252357264479e-17,3.2815547154618762e-18)
    sum a = (7.900906491553617e-17,1.4252661550973045e-16,-4.849733895723185e-17)
    sum e = 2.592001385220421
    sum de = -3.9302328752599536e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01033027311041338
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.2739249639378587e-19,-1.0633583857194706e-17,2.2394195872688095e-18)
    sum a = (-2.105932615792394e-17,-1.6594538243541735e-16,8.04727378483916e-17)
    sum e = 2.592000446399891
    sum de = -6.911788849595091e-19
Info: CFL hydro = 0.005128412752351363 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005128412752351363 cfl multiplier : 0.4634703321769525        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2966e+04 |  512 |      1 | 3.949e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 896.0811005139308 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9834029755551966, dt = 0.005128412752351363 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.81 us    (0.9%)
   patch tree reduce : 922.00 ns  (0.2%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 711.00 ns  (0.2%)
   LB compute        : 390.38 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.48 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0948273537758625e-18,-1.3019370737749058e-17,3.138114768042044e-18)
    sum a = (-1.232178421795016e-16,6.978792543854694e-17,3.413285279418865e-18)
    sum e = 2.592000697523207
    sum de = -9.75781955236954e-19
Info: CFL hydro = 0.00710888630788135 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00710888630788135 cfl multiplier : 0.6423135547846349         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6786e+04 |  512 |      1 | 3.050e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 605.2717331450942 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9885313883075479, dt = 0.00710888630788135 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.59 us    (0.9%)
   patch tree reduce : 962.00 ns  (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 531.00 ns  (0.1%)
   LB compute        : 370.38 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2774750835230506e-18,-1.1736461412101272e-17,3.1468968056391765e-18)
    sum a = (3.2669179861333217e-18,2.4683380339673987e-17,-1.5048021422686685e-17)
    sum e = 2.592000954239603
    sum de = 2.656295322589486e-18
Info: CFL hydro = 0.008425826832060623 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008425826832060623 cfl multiplier : 0.7615423698564232        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6425e+04 |  512 |      1 | 3.117e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 821.0084403744603 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9956402746154293, dt = 0.004359725384570745 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (0.8%)
   patch tree reduce : 782.00 ns  (0.2%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 511.00 ns  (0.1%)
   LB compute        : 394.98 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6568777599923479e-18,-1.1816231586941895e-17,3.0151662416821877e-18)
    sum a = (1.6240951454787184e-16,4.641599604671143e-17,7.165666985557012e-17)
    sum e = 2.592000637694665
    sum de = 8.402566836762659e-19
Info: CFL hydro = 0.009304315738503072 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009304315738503072 cfl multiplier : 0.8410282465709488        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5532e+04 |  512 |      1 | 3.297e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 476.1080070162004 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 134                                                     [SPH][rank=0]
Info: time since start : 709.1032532590001 (s)                                        [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14945454052672807 max=0.15053482526168308 delta=0.0010802847349550004
Number of particle pairs: 130816
Distance min=0.145957 max=1.918931 mean=0.806421
---------------- t = 1, dt = 0.009304315738503072 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.77 us    (1.6%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.1%)
   LB compute        : 575.37 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4051260155412138e-19,-1.1516544553939744e-17,3.852387159275494e-18)
    sum a = (-3.487054395234779e-17,1.251030529170194e-16,-2.6654947780230254e-17)
    sum e = 2.5920013482533326
    sum de = 4.607859233063394e-19
Info: CFL hydro = 0.009888334468958168 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009888334468958168 cfl multiplier : 0.8940188310472991        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5460e+04 |  512 |      1 | 3.312e-02 | 0.0% |   2.1% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1011.3926875687005 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.009304315738503, dt = 0.009888334468958168 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 us    (0.8%)
   patch tree reduce : 641.00 ns  (0.2%)
   gen split merge   : 612.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 591.00 ns  (0.1%)
   LB compute        : 384.81 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2119211884042968e-18,-9.968344509211913e-18,3.2083710688191046e-18)
    sum a = (-3.2856529996738715e-17,6.946006270158733e-17,1.9302918638497425e-17)
    sum e = 2.592001478679999
    sum de = 1.4907779871675686e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01028199265433543
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2821774891813576e-18,-1.0218358142055281e-17,3.457195467404528e-18)
    sum a = (7.146822196546498e-17,-1.4838130724115217e-16,1.2248015102134247e-16)
    sum e = 2.5920004443012514
    sum de = 2.2497195079074217e-18
Info: CFL hydro = 0.00513612903239373 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00513612903239373 cfl multiplier : 0.464672943682433          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2412e+04 |  512 |      1 | 4.125e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 862.9840930568505 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0191926502074613, dt = 0.00513612903239373 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.44 us    (0.8%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 400.36 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1076890233118206e-19,-1.206670261757678e-17,4.522749362523281e-18)
    sum a = (-1.068598334819093e-16,8.974071485923218e-17,-5.0350348890226823e-17)
    sum e = 2.592000720789477
    sum de = -2.5614276324970042e-18
Info: CFL hydro = 0.007104976628083168 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007104976628083168 cfl multiplier : 0.6431152957882887        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6272e+04 |  512 |      1 | 3.147e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 587.6261839916766 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.024328779239855, dt = 0.007104976628083168 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.37 us    (0.8%)
   patch tree reduce : 641.00 ns  (0.2%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 692.00 ns  (0.2%)
   LB compute        : 388.04 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.85 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (72.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5632026922896002e-18,-1.0588941832742616e-17,3.846532467544073e-18)
    sum a = (-8.356986977431368e-17,-9.732839534315474e-17,-1.9068730969240553e-17)
    sum e = 2.5920009657058047
    sum de = 3.2255014631443757e-18
Info: CFL hydro = 0.008415373307721706 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008415373307721706 cfl multiplier : 0.7620768638588592        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6583e+04 |  512 |      1 | 3.087e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 828.4535997282205 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.031433755867938, dt = 0.008415373307721706 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (0.8%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 601.00 ns  (0.2%)
   LB compute        : 368.46 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.29 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0784155646547118e-18,-1.2201177568282873e-17,3.6855284449299755e-18)
    sum a = (1.9443431240051544e-16,-1.052439385640369e-16,-1.847740710436696e-17)
    sum e = 2.5920011557506646
    sum de = -2.981555974335137e-19
Info: CFL hydro = 0.009289086840441265 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009289086840441265 cfl multiplier : 0.8413845759059061        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5735e+04 |  512 |      1 | 3.254e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 931.0593893530039 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0398491291756597, dt = 0.009289086840441265 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.30 us    (0.8%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 631.00 ns  (0.2%)
   LB compute        : 389.19 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.52 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.313662258618848e-19,-1.3212575564885975e-17,3.553797880972986e-18)
    sum a = (3.536233805778721e-17,1.3123876985154936e-16,-1.1746853489924546e-16)
    sum e = 2.5920012724370083
    sum de = -3.7269449679189215e-19
Info: CFL hydro = 0.009874402645904999 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009874402645904999 cfl multiplier : 0.8942563839372708        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6521e+04 |  512 |      1 | 3.099e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1079.0279012983021 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.049138216016101, dt = 0.009874402645904999 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.55 us    (1.0%)
   patch tree reduce : 632.00 ns  (0.2%)
   gen split merge   : 510.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 602.00 ns  (0.2%)
   LB compute        : 359.04 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.40 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.474136768879312e-19,-1.0794587879808804e-17,1.8471552412635538e-18)
    sum a = (3.6533276404071555e-18,1.8627287212691358e-16,-6.332434576705736e-17)
    sum e = 2.592001320421449
    sum de = 5.963111948670274e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010884714461711471
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.50341022753642e-19,-1.0370122729280728e-17,2.1281804443717968e-18)
    sum a = (-4.775086576147558e-17,8.337081025544535e-18,-3.2552086026704786e-17)
    sum e = 2.5920004299605672
    sum de = 5.421010862427522e-20
Info: CFL hydro = 0.005133995305369547 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005133995305369547 cfl multiplier : 0.46475212797909027       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2238e+04 |  512 |      1 | 4.184e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 849.6466074978403 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.059012618662006, dt = 0.005133995305369547 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (0.7%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 330.00 ns  (0.1%)
   LB compute        : 397.14 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.71 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.927345865710862e-20,-1.1140014691962684e-17,2.2745477376573397e-18)
    sum a = (6.669664820435628e-17,1.592007775608195e-16,3.9284981517839765e-17)
    sum e = 2.5920006703315677
    sum de = -1.497554250745603e-18
Info: CFL hydro = 0.007099165239293285 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007099165239293285 cfl multiplier : 0.6431680853193935        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6300e+04 |  512 |      1 | 3.141e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 588.3997024803824 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0641466139673754, dt = 0.007099165239293285 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (0.8%)
   patch tree reduce : 751.00 ns  (0.2%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 531.00 ns  (0.1%)
   LB compute        : 382.57 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.85 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.947214513051356e-19,-9.689514815502954e-18,2.5702096700941368e-18)
    sum a = (-5.0139579987895646e-17,1.567183882666967e-16,-7.564261716996867e-17)
    sum e = 2.592000854965335
    sum de = 5.116079001415974e-19
Info: CFL hydro = 0.008405097957831814 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008405097957831814 cfl multiplier : 0.7621120568795957        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6651e+04 |  512 |      1 | 3.075e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 831.1728708351774 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0712457792066687, dt = 0.008405097957831814 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 us    (0.8%)
   patch tree reduce : 551.00 ns  (0.1%)
   gen split merge   : 401.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 380.00 ns  (0.1%)
   LB compute        : 407.21 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.33 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.8102520310824276e-19,-8.237551266110365e-18,1.4900190456468288e-18)
    sum a = (-7.121647022101385e-17,1.4683566862405683e-16,-8.009218288584919e-17)
    sum e = 2.592000978833192
    sum de = -3.1543506955750145e-18
Info: CFL hydro = 0.009274429039479153 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009274429039479153 cfl multiplier : 0.8414080379197305        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6486e+04 |  512 |      1 | 3.106e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 974.2910848959476 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0796508771645006, dt = 0.009274429039479153 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 us    (0.9%)
   patch tree reduce : 551.00 ns  (0.1%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 401.00 ns  (0.1%)
   LB compute        : 361.75 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.22 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.806608650131388e-19,-7.016848040108936e-18,1.0187163612673799e-18)
    sum a = (-1.5437651157412802e-16,1.28124073850433e-16,1.8500825871292648e-18)
    sum e = 2.5920010376078206
    sum de = 1.57378721599849e-18
Info: CFL hydro = 0.00985620131226185 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00985620131226185 cfl multiplier : 0.8942720252798203         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6421e+04 |  512 |      1 | 3.118e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1070.8586272185705 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0889253062039796, dt = 0.00985620131226185 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (0.7%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 441.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 321.00 ns  (0.1%)
   LB compute        : 397.81 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 2.26 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.862944256665223e-18,-5.640995483224831e-18,1.1914297673443207e-18)
    sum a = (-3.0327303168764527e-17,-5.309034462053219e-17,9.320669236423385e-18)
    sum e = 2.592001048507623
    sum de = -7.295071258227662e-20
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010927020423124613
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.248201624865942e-18,-6.806079137777754e-18,1.1709383462843449e-18)
    sum a = (6.276229536084088e-18,-2.0304070924570538e-17,-6.831254312222868e-17)
    sum e = 2.592000419599817
    sum de = -4.881027358552906e-19
Info: CFL hydro = 0.0051264075864636315 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0051264075864636315 cfl multiplier : 0.46475734175994016      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2143e+04 |  512 |      1 | 4.216e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 841.5304577695165 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0987815075162415, dt = 0.0051264075864636315 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.73 us    (0.9%)
   patch tree reduce : 1042.00 ns (0.2%)
   gen split merge   : 641.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 621.00 ns  (0.1%)
   LB compute        : 414.84 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.50 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.973031113489121e-18,-6.466507017355294e-18,5.50341022753642e-19)
    sum a = (-1.1859263571167845e-16,5.971785566050158e-18,-7.318364664277155e-17)
    sum e = 2.5920005893818177
    sum de = 5.875020522155827e-18
Info: CFL hydro = 0.00709745633492832 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00709745633492832 cfl multiplier : 0.6431715611732934         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6215e+04 |  512 |      1 | 3.158e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 584.469068596247 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.1039079151027051, dt = 0.00709745633492832 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.88 us    (1.0%)
   patch tree reduce : 1132.00 ns (0.3%)
   gen split merge   : 692.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 386.86 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.62 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.1322600763106224e-18,-6.416742137638209e-18,7.025630077706069e-20)
    sum a = (6.580673506118018e-17,-5.269222558279552e-18,2.8945595920149e-17)
    sum e = 2.592000719002444
    sum de = 2.2717423645360335e-18
Info: CFL hydro = 0.008408021770251581 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008408021770251581 cfl multiplier : 0.7621143741155288        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5737e+04 |  512 |      1 | 3.253e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 785.3360136251749 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1110053714376336, dt = 0.008408021770251581 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (0.8%)
   patch tree reduce : 581.00 ns  (0.1%)
   gen split merge   : 572.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 430.00 ns  (0.1%)
   LB compute        : 379.70 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.50 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7476254818293846e-18,-6.211827927038449e-18,6.89389951374908e-19)
    sum a = (-2.398081733190338e-17,-8.582978078264247e-17,-6.369904603786835e-17)
    sum e = 2.5920008127391623
    sum de = -2.8494188345634663e-18
Info: CFL hydro = 0.009270504247079233 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009270504247079233 cfl multiplier : 0.8414095827436858        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6558e+04 |  512 |      1 | 3.092e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 978.8937060528333 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1194133932078851, dt = 0.009270504247079233 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (0.8%)
   patch tree reduce : 481.00 ns  (0.1%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 331.00 ns  (0.1%)
   LB compute        : 387.25 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.35 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5658186512955703e-18,-8.231696574378943e-18,-2.0052319180119404e-19)
    sum a = (7.681355551625302e-18,-1.0700034608346343e-16,4.6064714542826126e-17)
    sum e = 2.592000875230391
    sum de = -3.079811796216636e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01042850498744943
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.8175703957467047e-18,-7.751611852402362e-18,3.2786273695961654e-19)
    sum a = (-9.198891648409812e-17,-5.0783596078352035e-17,5.18257312065451e-17)
    sum e = 2.5920004277205924
    sum de = 2.6291902682773483e-18
Info: CFL hydro = 0.004922690365196899 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004922690365196899 cfl multiplier : 0.4471365275812286        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1876e+04 |  512 |      1 | 4.311e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 774.1439071177408 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1286838974549644, dt = 0.004922690365196899 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.84 us    (1.0%)
   patch tree reduce : 731.00 ns  (0.2%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 382.40 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 2.79 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.736756997579915e-18,-7.728193085476676e-18,5.357042934250877e-19)
    sum a = (2.46599615727483e-16,-4.6673602482893983e-17,9.156737867943577e-18)
    sum e = 2.592000552332388
    sum de = -2.0328790734103208e-20
Info: CFL hydro = 0.0069481292246822675 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0069481292246822675 cfl multiplier : 0.6314243517208191       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6476e+04 |  512 |      1 | 3.108e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 570.2637571320867 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1336065878201613, dt = 0.0069481292246822675 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 us    (0.9%)
   patch tree reduce : 732.00 ns  (0.2%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 692.00 ns  (0.2%)
   LB compute        : 384.58 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1519105981572241e-18,-8.132166814944775e-18,3.893370001395446e-19)
    sum a = (1.1789007270390784e-16,5.385145454561702e-17,-9.313643606345679e-17)
    sum e = 2.592000676117738
    sum de = 7.115076756936123e-19
Info: CFL hydro = 0.008296531785145677 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008296531785145677 cfl multiplier : 0.7542829011472127        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6339e+04 |  512 |      1 | 3.134e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 798.2328585469705 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1405547170448436, dt = 0.008296531785145677 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 us    (0.7%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 441.00 ns  (0.1%)
   LB compute        : 406.40 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.44 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.462115998556728e-19,-7.274454476291492e-18,-6.498707821878113e-19)
    sum a = (1.0547812623329378e-16,3.9176669720808467e-17,-1.2716390440647983e-16)
    sum e = 2.592000790090909
    sum de = 2.507217523872729e-19
Info: CFL hydro = 0.009196471731798491 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009196471731798491 cfl multiplier : 0.8361886007648085        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6710e+04 |  512 |      1 | 3.064e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 974.8061461477245 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1488512488299893, dt = 0.009196471731798491 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.08 us    (1.0%)
   patch tree reduce : 512.00 ns  (0.1%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 401.56 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.52 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.010993348377514e-19,-6.762168949792091e-18,-1.946685000697723e-18)
    sum a = (4.44956571588051e-17,5.617576716299144e-18,-1.0126274818667014e-16)
    sum e = 2.5920008977032265
    sum de = 1.8770250111155296e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011328662637589316
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.661268778790914e-19,-6.911463588943345e-18,-1.8230046378714394e-18)
    sum a = (1.0538445116559103e-17,-7.255719462750942e-17,8.9529945956901e-17)
    sum e = 2.59200044050695
    sum de = -3.611748487092337e-18
Info: CFL hydro = 0.0049016073339154045 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0049016073339154045 cfl multiplier : 0.44539620025493615      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2083e+04 |  512 |      1 | 4.237e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 781.3278010167522 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1580477205617878, dt = 0.0049016073339154045 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.83 us    (0.9%)
   patch tree reduce : 891.00 ns  (0.2%)
   gen split merge   : 611.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 731.00 ns  (0.2%)
   LB compute        : 388.95 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7198156961051313e-19,-7.81015876971658e-18,-6.696303667813596e-19)
    sum a = (-1.4613310561628622e-16,-7.61344112754081e-17,1.8334552626120272e-16)
    sum e = 2.5920005679030593
    sum de = -1.700842158086635e-18
Info: CFL hydro = 0.006938561913024315 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006938561913024315 cfl multiplier : 0.6302641335032907        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6435e+04 |  512 |      1 | 3.115e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 566.4149793344128 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1629493278957033, dt = 0.006938561913024315 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.26 us    (0.8%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 421.00 ns  (0.1%)
   LB compute        : 393.54 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.56 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6038196161763384e-18,-8.126312123213353e-18,9.323596582289094e-19)
    sum a = (-6.838279942300574e-17,-3.6626951471774306e-17,8.7586188302069e-18)
    sum e = 2.5920007210847595
    sum de = 1.8566962203814263e-18
Info: CFL hydro = 0.008299066695194071 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008299066695194071 cfl multiplier : 0.7535094223355271        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6388e+04 |  512 |      1 | 3.124e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 799.4950744841744 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1698878898087275, dt = 0.008299066695194071 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.02 us    (0.9%)
   patch tree reduce : 1042.00 ns (0.2%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 632.00 ns  (0.1%)
   LB compute        : 455.18 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.811295254408596e-18,-8.805456364058272e-18,4.619717694324954e-19)
    sum a = (7.517424183145494e-17,1.5395497376946564e-16,-3.779788981805865e-17)
    sum e = 2.592000881012607
    sum de = 1.7143946852427039e-18
Info: CFL hydro = 0.009209689092859486 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009209689092859486 cfl multiplier : 0.8356729482236848        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5797e+04 |  512 |      1 | 3.241e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 921.7726009149422 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1781869565039216, dt = 0.009209689092859486 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.03 us    (0.9%)
   patch tree reduce : 1352.00 ns (0.3%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 413.70 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (72.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.69160126215529e-19,-6.410887445906788e-18,-1.2093597607718e-19)
    sum a = (-1.0163744845748113e-17,-2.049844669005374e-16,-8.079474589361979e-18)
    sum e = 2.592001043200034
    sum de = 2.7376104855258987e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011651858369083229
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.153701459330918e-19,-7.854068957702243e-18,-8.873517155436051e-20)
    sum a = (-1.1943571132100316e-16,-8.817165747521116e-17,-2.5151755678187727e-17)
    sum e = 2.592000455233645
    sum de = 1.6466320494623599e-18
Info: CFL hydro = 0.00490600315524884 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00490600315524884 cfl multiplier : 0.44522431607456153        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2608e+04 |  512 |      1 | 4.061e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 816.4703039113647 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.187396645596781, dt = 0.00490600315524884 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.53 us    (0.8%)
   patch tree reduce : 942.00 ns  (0.2%)
   gen split merge   : 672.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 701.00 ns  (0.2%)
   LB compute        : 404.00 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1003706586475433e-18,-7.801376732119447e-18,-1.0867771526451575e-19)
    sum a = (1.245644212777286e-16,-3.84301965250522e-17,7.09588637848313e-17)
    sum e = 2.5920006189284446
    sum de = 3.0222135558033436e-18
Info: CFL hydro = 0.006943424032201542 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006943424032201542 cfl multiplier : 0.6301495440497077        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6823e+04 |  512 |      1 | 3.044e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 580.299669469511 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.1923026487520298, dt = 0.006943424032201542 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.71 us    (0.9%)
   patch tree reduce : 1052.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 399.31 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4296970685400155e-19,-8.135094160810486e-18,6.103516130007147e-19)
    sum a = (-2.6767650596060122e-17,-1.8453988337441274e-17,-1.0313624954072509e-16)
    sum e = 2.5920008221014097
    sum de = 1.0842021724855044e-18
Info: CFL hydro = 0.008303705122744226 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008303705122744226 cfl multiplier : 0.7534330293664718        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6008e+04 |  512 |      1 | 3.198e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 781.5144579357135 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1992460727842313, dt = 0.008303705122744226 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 us    (0.8%)
   patch tree reduce : 661.00 ns  (0.2%)
   gen split merge   : 582.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 394.56 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.58 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.46996387557464e-19,-8.058983168302003e-18,-9.528510792888855e-19)
    sum a = (2.0304070924570538e-17,-2.4706799106599675e-17,1.4039550771949295e-16)
    sum e = 2.5920010312192905
    sum de = -1.2874900798265365e-18
Info: CFL hydro = 0.009215799816497429 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009215799816497429 cfl multiplier : 0.8356220195776478        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6340e+04 |  512 |      1 | 3.133e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 954.0246709550285 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2075497779069755, dt = 0.009215799816497429 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.61 us    (0.9%)
   patch tree reduce : 782.00 ns  (0.2%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 632.00 ns  (0.2%)
   LB compute        : 386.49 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.75 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.108218535665454e-19,-8.647379687309886e-18,1.4300084553997561e-18)
    sum a = (-6.742262997905258e-17,3.03741407026159e-17,-1.6861512186494565e-18)
    sum e = 2.5920012310563294
    sum de = -1.4365678785432934e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01166881181201585
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.0015885370609e-19,-7.982872175793521e-18,7.874560378762219e-19)
    sum a = (-4.917941054394248e-19,-6.383955863942248e-17,9.772651438089141e-17)
    sum e = 2.59200046629728
    sum de = 2.168404344971009e-19
Info: CFL hydro = 0.004917450433075506 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004917450433075506 cfl multiplier : 0.44520733985921596       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2628e+04 |  512 |      1 | 4.054e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 818.27767570684 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 1.216765577723473, dt = 0.004917450433075506 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.1%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 444.36 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (73.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.2592882346093043e-19,-8.963533040806659e-18,1.6071128802752633e-18)
    sum a = (-5.135735586803136e-17,-1.3945875704246546e-16,-9.437763071051819e-18)
    sum e = 2.5920006809205813
    sum de = 3.7947076036992655e-19
Info: CFL hydro = 0.006965868622475736 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006965868622475736 cfl multiplier : 0.6301382265728107        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6466e+04 |  512 |      1 | 3.109e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 569.3190312014873 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2216830281565485, dt = 0.006965868622475736 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 us    (0.9%)
   patch tree reduce : 551.00 ns  (0.1%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 521.00 ns  (0.1%)
   LB compute        : 361.04 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2207032260014295e-18,-1.0111052620165317e-17,1.3436517523612857e-18)
    sum a = (-1.8172963134333032e-16,1.0046651011119678e-17,1.0749214018890285e-16)
    sum e = 2.592000930953129
    sum de = -1.395910297075087e-18
Info: CFL hydro = 0.008340812618859429 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008340812618859429 cfl multiplier : 0.7534254843818738        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6269e+04 |  512 |      1 | 3.147e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 796.851802804523 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.2286488967790243, dt = 0.008340812618859429 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (0.8%)
   patch tree reduce : 571.00 ns  (0.1%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 370.00 ns  (0.1%)
   LB compute        : 390.53 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.77 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0341939898093082e-18,-9.092336258897937e-18,2.624365568609788e-18)
    sum a = (3.3441999169880885e-17,3.887515309664025e-18,4.149805499231718e-17)
    sum e = 2.592001170775738
    sum de = 3.1712913545201005e-18
Info: CFL hydro = 0.009270267670525849 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009270267670525849 cfl multiplier : 0.8356169895879159        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6558e+04 |  512 |      1 | 3.092e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 971.0670781084011 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2369897093978837, dt = 0.009270267670525849 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (1.2%)
   patch tree reduce : 1884.00 ns (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 365.62 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 2.87 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0710971999904348e-18,-9.59144872900164e-18,2.8043973393510057e-18)
    sum a = (6.647416991856225e-17,-6.304332056394912e-17,-6.091221277371162e-17)
    sum e = 2.5920013760154927
    sum de = -4.607859233063394e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010150283061537995
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5251471960353591e-18,-9.884183315572725e-18,2.3126032339115808e-18)
    sum a = (1.3149637628773191e-17,-1.0922512894140368e-16,-1.6276043013352393e-17)
    sum e = 2.592000470010392
    sum de = 1.6059744679941534e-18
Info: CFL hydro = 0.004953906040455424 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004953906040455424 cfl multiplier : 0.445205663195972         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2008e+04 |  512 |      1 | 4.264e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 782.6788686628354 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2462599770684095, dt = 0.004953906040455424 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (0.7%)
   patch tree reduce : 1843.00 ns (0.3%)
   gen split merge   : 741.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.1%)
   LB compute        : 656.88 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9232662337720364e-18,-1.0523808387230549e-17,2.5482545761013052e-18)
    sum a = (-8.886251109951892e-17,-5.751649156948701e-17,4.7774284528401266e-17)
    sum e = 2.5920007262539104
    sum de = 7.724940478959219e-19
Info: CFL hydro = 0.007022389194598714 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007022389194598714 cfl multiplier : 0.6301371087973147        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3117e+04 |  512 |      1 | 3.903e-02 | 0.0% |   1.2% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.88393135347894 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2512138831088648, dt = 0.007022389194598714 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (0.5%)
   patch tree reduce : 671.00 ns  (0.1%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 511.00 ns  (0.1%)
   LB compute        : 630.49 us  (98.3%)
   LB move op cnt    : 0
   LB apply          : 2.17 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6433933167369084e-18,-1.0929245789631504e-17,2.961010343166537e-18)
    sum a = (9.406147735702141e-17,3.6673789005625676e-17,3.0584909604947086e-17)
    sum e = 2.5920009967927338
    sum de = 2.3310346708438345e-18
Info: CFL hydro = 0.008397199109704635 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008397199109704635 cfl multiplier : 0.7534247391982097        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6567e+04 |  512 |      1 | 3.091e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 817.995561850428 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.2582362723034635, dt = 0.008397199109704635 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.62 us    (0.9%)
   patch tree reduce : 701.00 ns  (0.2%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 571.00 ns  (0.1%)
   LB compute        : 403.87 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.38 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4387904929968887e-18,-1.0043723665253967e-17,3.196661685356261e-18)
    sum a = (-3.454268121538817e-18,5.0490861491780944e-17,3.955429733748517e-17)
    sum e = 2.592001228048392
    sum de = -7.995991022080595e-19
Info: CFL hydro = 0.009293990959006352 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009293990959006352 cfl multiplier : 0.8356164927988065        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6525e+04 |  512 |      1 | 3.098e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 975.6661730099619 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2666334714131682, dt = 0.009293990959006352 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 us    (0.8%)
   patch tree reduce : 561.00 ns  (0.1%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 450.00 ns  (0.1%)
   LB compute        : 380.50 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.28 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0579241435947358e-18,-9.685123796704386e-18,3.66796436973571e-18)
    sum a = (-1.6896347602296524e-16,3.77042147503559e-17,-2.0374327225347597e-18)
    sum e = 2.5920013888213953
    sum de = 2.6495190590114515e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010070115982220242
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5965557828855344e-18,-9.800753958399966e-18,3.4220673170159975e-18)
    sum a = (-7.277381822157203e-17,-1.6397820601365965e-16,7.042023214554049e-17)
    sum e = 2.5920004656840425
    sum de = 1.7889335846010823e-18
Info: CFL hydro = 0.0049420283420326455 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0049420283420326455 cfl multiplier : 0.4452054975996022       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2820e+04 |  512 |      1 | 3.994e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 837.7880647942467 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2759274623721746, dt = 0.0049420283420326455 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (0.8%)
   patch tree reduce : 451.00 ns  (0.1%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 401.00 ns  (0.1%)
   LB compute        : 401.90 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 2.06 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5702096700941368e-18,-1.1437872133798766e-17,4.057301369875254e-18)
    sum a = (-1.3890073173681434e-16,9.812463341862809e-17,-1.0109881681819033e-16)
    sum e = 2.592000725292236
    sum de = -8.809142651444724e-19
Info: CFL hydro = 0.0069877660211904976 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0069877660211904976 cfl multiplier : 0.6301369983997348       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6301e+04 |  512 |      1 | 3.141e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 566.4315409591892 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2808694907142073, dt = 0.0069877660211904976 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 us    (0.9%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 632.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 571.00 ns  (0.1%)
   LB compute        : 378.02 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.25 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.881660617932603e-18,-1.0065678759246799e-17,2.8570895649338013e-18)
    sum a = (-1.4089315651666379e-16,9.554856905680253e-18,-1.2012656494531093e-16)
    sum e = 2.5920009675623903
    sum de = 1.6805133673525319e-18
Info: CFL hydro = 0.008344706158170399 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008344706158170399 cfl multiplier : 0.7534246655998231        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6769e+04 |  512 |      1 | 3.053e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 823.9262100809614 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2878572567353979, dt = 0.008344706158170399 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.49 us    (0.9%)
   patch tree reduce : 531.00 ns  (0.1%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 741.00 ns  (0.2%)
   LB compute        : 373.74 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.27 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.770110088175849e-18,-1.0389516395641063e-17,1.8500825871292648e-18)
    sum a = (1.2883249154993503e-16,1.8608552199150808e-16,1.4899019518122003e-16)
    sum e = 2.5920011490289454
    sum de = 4.2690460541616737e-19
Info: CFL hydro = 0.009243956365146794 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009243956365146794 cfl multiplier : 0.8356164437332154        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6576e+04 |  512 |      1 | 3.089e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 972.6006580781806 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2962019628935681, dt = 0.009243956365146794 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (0.8%)
   patch tree reduce : 501.00 ns  (0.1%)
   gen split merge   : 411.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 411.00 ns  (0.1%)
   LB compute        : 366.79 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.18 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4706799106599675e-18,-7.801742650352661e-18,4.247578851146461e-18)
    sum a = (-6.265691090967529e-17,-2.0421164759198974e-17,-3.168559165045437e-17)
    sum e = 2.5920012494113354
    sum de = 2.9713915789680856e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010125034071919642
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.496714636591625e-18,-8.731174962715859e-18,3.515742384718745e-18)
    sum a = (-2.099726642557087e-16,-6.983476297239832e-17,-2.5163465061650568e-17)
    sum e = 2.592000457336149
    sum de = -5.827586677109586e-19
Info: CFL hydro = 0.004919156022675732 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004919156022675732 cfl multiplier : 0.4452054812444051        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2450e+04 |  512 |      1 | 4.112e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 809.2369872181579 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.305445919258715, dt = 0.004919156022675732 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.59 us    (0.9%)
   patch tree reduce : 571.00 ns  (0.1%)
   gen split merge   : 571.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 501.00 ns  (0.1%)
   LB compute        : 387.30 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.34 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.261904193615274e-18,-9.268708847307016e-18,3.2874094071932978e-18)
    sum a = (4.258702765436162e-17,3.016337180028472e-17,4.453078530919363e-17)
    sum e = 2.5920006811813505
    sum de = -2.981555974335137e-19
Info: CFL hydro = 0.006958265975329958 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006958265975329958 cfl multiplier : 0.63013698749627          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6560e+04 |  512 |      1 | 3.092e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 572.7706057212703 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3103650752813907, dt = 0.006958265975329958 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.40 us    (0.8%)
   patch tree reduce : 752.00 ns  (0.2%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 541.00 ns  (0.1%)
   LB compute        : 418.57 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.65 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0982842119952065e-18,-8.700071912892682e-18,3.928498151783977e-18)
    sum a = (2.3213852715087134e-16,7.11227951533111e-17,-1.5807667674838655e-16)
    sum e = 2.592000867875122
    sum de = -1.8566962203814263e-18
Info: CFL hydro = 0.008314298237742171 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008314298237742171 cfl multiplier : 0.7534246583308466        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6521e+04 |  512 |      1 | 3.099e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 808.2885684331266 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3173233412567207, dt = 0.008314298237742171 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (0.8%)
   patch tree reduce : 460.00 ns  (0.1%)
   gen split merge   : 390.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 440.00 ns  (0.1%)
   LB compute        : 405.28 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 2.48 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7037152938437217e-18,-8.072156224697702e-18,1.864719316457819e-18)
    sum a = (-7.854654426875384e-17,-4.238796813549328e-17,2.458970527197124e-19)
    sum e = 2.592000989857841
    sum de = 3.1712913545201005e-18
Info: CFL hydro = 0.009217105054514417 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009217105054514417 cfl multiplier : 0.835616438887231         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6441e+04 |  512 |      1 | 3.114e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 961.1209173757935 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.325637639494463, dt = 0.009217105054514417 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (0.8%)
   patch tree reduce : 451.00 ns  (0.1%)
   gen split merge   : 411.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 381.00 ns  (0.1%)
   LB compute        : 381.49 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 8.62 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.752857399841325e-18,-9.12014604462219e-18,2.4238423768085935e-18)
    sum a = (2.309090418872728e-17,-3.529208175701015e-17,5.943536678446048e-17)
    sum e = 2.5920010383542196
    sum de = 5.404070203482436e-19
Info: CFL hydro = 0.009820407710669492 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009820407710669492 cfl multiplier : 0.890410959258154         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7019e+04 |  512 |      1 | 3.008e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1102.9457187465925 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3348547445489773, dt = 0.009820407710669492 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (0.7%)
   patch tree reduce : 501.00 ns  (0.1%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 521.00 ns  (0.1%)
   LB compute        : 422.54 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 2.38 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9844291100922236e-18,-9.352870040946204e-18,3.433776700478841e-18)
    sum a = (8.924892075379276e-17,7.002211310780382e-18,-1.5385398033709862e-17)
    sum e = 2.5920010293848765
    sum de = -7.746645698232611e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011195151187219305
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5585002866312933e-18,-9.15234684914501e-18,3.0180935875478987e-18)
    sum a = (3.323123026754971e-17,7.878073193801072e-17,-3.585998685495806e-18)
    sum e = 2.592000438059288
    sum de = -1.2514117702294237e-18
Info: CFL hydro = 0.005114012205972844 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005114012205972844 cfl multiplier : 0.46347031975271796       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2172e+04 |  512 |      1 | 4.206e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 840.4688181210165 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3446751522596467, dt = 0.005114012205972844 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (0.8%)
   patch tree reduce : 460.00 ns  (0.1%)
   gen split merge   : 390.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 441.00 ns  (0.1%)
   LB compute        : 375.61 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.42 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7531687867010656e-18,-8.187786386393282e-18,3.1322600763106224e-18)
    sum a = (1.2442390867617447e-16,-9.29256671611256e-17,2.333387389558128e-17)
    sum e = 2.592000599008355
    sum de = 1.8579667698023078e-18
Info: CFL hydro = 0.00708814580931588 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00708814580931588 cfl multiplier : 0.6423135465018119         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6110e+04 |  512 |      1 | 3.178e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 579.2967098943611 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3497891644656195, dt = 0.00708814580931588 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.65 us    (0.9%)
   patch tree reduce : 1282.00 ns (0.3%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1013.00 ns (0.3%)
   LB compute        : 370.94 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.491482718579684e-18,-9.512410390627445e-18,3.3810844748960454e-18)
    sum a = (-9.47289122144035e-17,-2.1685778173186065e-17,4.0324189300167125e-17)
    sum e = 2.5920007086200307
    sum de = 3.0476245442209726e-18
Info: CFL hydro = 0.008403456666670375 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008403456666670375 cfl multiplier : 0.7615423643345413        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6955e+04 |  512 |      1 | 3.020e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 845.0314151020217 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3568773102749354, dt = 0.008403456666670375 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.24 us    (0.8%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 430.00 ns  (0.1%)
   LB compute        : 373.14 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.23 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.206907395886249e-18,-9.259194973243456e-18,3.711874557721373e-18)
    sum a = (1.817296313433303e-17,-8.588832769995668e-17,5.412662505699384e-17)
    sum e = 2.5920007741968685
    sum de = -2.2090619264392153e-18
Info: CFL hydro = 0.009278141931089147 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009278141931089147 cfl multiplier : 0.8410282428896941        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6077e+04 |  512 |      1 | 3.185e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 949.9599039406978 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3652807669416058, dt = 0.009278141931089147 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (0.5%)
   patch tree reduce : 591.00 ns  (0.1%)
   gen split merge   : 391.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 311.00 ns  (0.0%)
   LB compute        : 621.78 us  (98.3%)
   LB move op cnt    : 0
   LB apply          : 2.23 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6016786381505286e-18,-1.0365731710482162e-17,4.3119804601921e-18)
    sum a = (1.049160758270773e-17,4.1685405127722676e-17,1.1217589357404023e-17)
    sum e = 2.5920008020919507
    sum de = 2.9341221292888964e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010069479407665099
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.862944256665223e-18,-1.001445020659686e-17,4.045591986412411e-18)
    sum a = (6.191921975151616e-17,-3.48471251854221e-17,-4.408582873760558e-18)
    sum e = 2.592000443091255
    sum de = -4.0657581468206416e-19
Info: CFL hydro = 0.004931084019060341 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004931084019060341 cfl multiplier : 0.44700941429656477       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1947e+04 |  512 |      1 | 4.286e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 779.3904526624968 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.374558908872695, dt = 0.004931084019060341 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.39 us    (1.0%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 691.00 ns  (0.2%)
   LB compute        : 412.57 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 2.90 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.101651372463792e-18,-1.0497462274439151e-17,3.878733272066892e-18)
    sum a = (-1.4533686754081289e-16,-7.681355551625302e-17,-1.8395441420127057e-17)
    sum e = 2.592000543595803
    sum de = -1.1079190950086248e-18
Info: CFL hydro = 0.0069619922514113615 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0069619922514113615 cfl multiplier : 0.6313396095310432       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6816e+04 |  512 |      1 | 3.045e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 583.0325580614292 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3794899928917554, dt = 0.0069619922514113615 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (0.8%)
   patch tree reduce : 491.00 ns  (0.1%)
   gen split merge   : 431.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 411.00 ns  (0.1%)
   LB compute        : 383.91 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.34 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.597525109842042e-18,-1.0983401688147154e-17,3.732365978781349e-18)
    sum a = (-5.948366799124471e-17,-7.855239896048527e-17,1.3725739295145088e-16)
    sum e = 2.5920006303503498
    sum de = 3.5067164016328034e-18
Info: CFL hydro = 0.008314857415730226 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008314857415730226 cfl multiplier : 0.7542264063540287        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6562e+04 |  512 |      1 | 3.092e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 810.7106391359973 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3864519851431667, dt = 0.008314857415730226 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.54 us    (0.9%)
   patch tree reduce : 691.00 ns  (0.2%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 431.00 ns  (0.1%)
   LB compute        : 363.48 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.56 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8282365558833796e-18,-1.1814767914009038e-17,5.427299235027938e-18)
    sum a = (-7.854654426875384e-17,-2.7926879558881622e-18,-1.056186388348479e-17)
    sum e = 2.5920007015725206
    sum de = 5.963111948670274e-19
Info: CFL hydro = 0.009218217584035845 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009218217584035845 cfl multiplier : 0.8361509375693524        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6255e+04 |  512 |      1 | 3.150e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 950.3306021298392 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3947668425588968, dt = 0.009218217584035845 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (0.8%)
   patch tree reduce : 521.00 ns  (0.1%)
   gen split merge   : 401.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 611.00 ns  (0.2%)
   LB compute        : 372.44 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.10 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.609106065561752e-18,-1.1293700349912505e-17,4.748154994183018e-18)
    sum a = (7.77503061932805e-18,-1.3284881007769035e-16,3.9039084465120056e-17)
    sum e = 2.5920007647234615
    sum de = 6.776263578034403e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010292814328002373
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.156099292842996e-18,-1.202260947047451e-17,4.953069204782778e-18)
    sum a = (1.1803058530546196e-17,1.484749823088549e-17,-9.867497444138173e-17)
    sum e = 2.592000453785405
    sum de = -1.1655173354219173e-18
Info: CFL hydro = 0.004913452623044222 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004913452623044222 cfl multiplier : 0.4453836458564508        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2773e+04 |  512 |      1 | 4.009e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 827.8780443573935 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4039850601429327, dt = 0.004913452623044222 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (0.8%)
   patch tree reduce : 581.00 ns  (0.1%)
   gen split merge   : 421.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 410.00 ns  (0.1%)
   LB compute        : 379.58 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.20 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.249042524079316e-18,-1.1402012146943807e-17,3.817259008886964e-18)
    sum a = (1.3629722350749772e-16,-6.156208355589942e-17,3.033901255222737e-17)
    sum e = 2.5920005401753268
    sum de = -1.4907779871675686e-19
Info: CFL hydro = 0.006953872254217353 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006953872254217353 cfl multiplier : 0.6302557639043006        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6148e+04 |  512 |      1 | 3.171e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 557.8766736117556 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.408898512765977, dt = 0.006953872254217353 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.69 us    (0.9%)
   patch tree reduce : 491.00 ns  (0.1%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 541.00 ns  (0.1%)
   LB compute        : 413.29 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.85 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0254119522121757e-18,-1.1849896064397568e-17,4.241724159415039e-18)
    sum a = (-1.6379085587825414e-16,1.0957055575355757e-16,-2.539765273090744e-17)
    sum e = 2.592000642285577
    sum de = -4.025100565352435e-18
Info: CFL hydro = 0.008317351445025678 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008317351445025678 cfl multiplier : 0.7535038426028672        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6267e+04 |  512 |      1 | 3.147e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 795.3883542075607 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4158523850201943, dt = 0.008317351445025678 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (0.8%)
   patch tree reduce : 531.00 ns  (0.1%)
   gen split merge   : 411.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 311.00 ns  (0.1%)
   LB compute        : 367.95 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.40 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.316060092130925e-18,-1.0365731710482162e-17,3.978263031501061e-18)
    sum a = (-2.2154153511699802e-17,-5.0725049161037816e-17,-3.450755306499964e-17)
    sum e = 2.5920007516909935
    sum de = -1.3552527156068805e-18
Info: CFL hydro = 0.009232966350249852 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009232966350249852 cfl multiplier : 0.8356692284019115        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6515e+04 |  512 |      1 | 3.100e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 965.836249272213 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.42416973646522, dt = 0.009232966350249852 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (0.8%)
   patch tree reduce : 530.00 ns  (0.1%)
   gen split merge   : 400.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 381.00 ns  (0.1%)
   LB compute        : 406.22 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.45 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (74.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.5871509715689204e-18,-1.1554234131960772e-17,3.483541580195926e-18)
    sum a = (1.4908387024892278e-16,1.2317100464565022e-16,1.4191772756966257e-17)
    sum e = 2.5920008706215123
    sum de = -5.285485590866834e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010318659035061597
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.1158482871894715e-18,-1.0538445116559103e-17,3.761639437438458e-18)
    sum a = (5.292641325205238e-17,-1.3711688034989678e-17,-1.6018436577169837e-17)
    sum e = 2.5920004686002502
    sum de = -1.883801274693564e-18
Info: CFL hydro = 0.004922594875198126 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004922594875198126 cfl multiplier : 0.44522307613397044       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2182e+04 |  512 |      1 | 4.203e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 790.8348509860516 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4334027028154699, dt = 0.004922594875198126 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.45 us    (0.9%)
   patch tree reduce : 500.00 ns  (0.1%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 371.64 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.33 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.273924963937859e-18,-1.1568870861289326e-17,3.6562549862728665e-18)
    sum a = (-2.871140825089213e-17,-2.0720924975847764e-16,-3.2317898357447914e-17)
    sum e = 2.5920005800379613
    sum de = -1.1519648082658485e-19
Info: CFL hydro = 0.006969170347577533 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006969170347577533 cfl multiplier : 0.6301487174226469        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6270e+04 |  512 |      1 | 3.147e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 563.1345187025554 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.438325297690668, dt = 0.006969170347577533 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (0.8%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 441.00 ns  (0.1%)
   LB compute        : 366.50 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.44 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.5900783174346314e-18,-1.3200866181423132e-17,3.2391082004090686e-18)
    sum a = (6.449528411334171e-17,1.547746306118647e-16,5.065479286026075e-17)
    sum e = 2.5920007288111693
    sum de = 9.961107459710572e-19
Info: CFL hydro = 0.008337923910706374 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008337923910706374 cfl multiplier : 0.7534324782817645        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6508e+04 |  512 |      1 | 3.102e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 808.9004750286123 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4452944680382456, dt = 0.008337923910706374 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (0.7%)
   patch tree reduce : 511.00 ns  (0.1%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 331.00 ns  (0.1%)
   LB compute        : 401.16 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 2.25 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.984117723232483e-18,-1.0714085868501754e-17,3.8948336743283015e-18)
    sum a = (-1.1147333056626963e-17,5.660315965938523e-17,1.2805381754965594e-16)
    sum e = 2.592000892802103
    sum de = -5.624298769768554e-19
Info: CFL hydro = 0.00925643381616154 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00925643381616154 cfl multiplier : 0.835621652187843          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6003e+04 |  512 |      1 | 3.199e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 938.2092126286244 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.453632391948952, dt = 0.00925643381616154 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.34 us    (0.8%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 421.00 ns  (0.1%)
   LB compute        : 421.68 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.48 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.288561693266413e-18,-1.0797515225674514e-17,5.485846152342155e-18)
    sum a = (-4.9319923145496604e-17,-2.9460808792514116e-17,-7.999850781814644e-17)
    sum e = 2.5920010636094295
    sum de = -4.472333961502706e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01037431874233191
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.417364911357691e-18,-1.0889726620444406e-17,4.4246832760219676e-18)
    sum a = (-1.5269036035547855e-16,-2.3465604459538268e-17,-1.6449341888602475e-16)
    sum e = 2.5920004823578733
    sum de = 2.757939276260002e-18
Info: CFL hydro = 0.004939216664668048 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004939216664668048 cfl multiplier : 0.44520721739594765       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2094e+04 |  512 |      1 | 4.233e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 787.1532186358073 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4628888257651136, dt = 0.004939216664668048 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.42 us    (1.0%)
   patch tree reduce : 1442.00 ns (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 702.00 ns  (0.2%)
   LB compute        : 409.07 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.512192265133553e-18,-1.104194860546137e-17,3.2991187906561413e-18)
    sum a = (-2.632269402447207e-17,2.353586076031533e-17,1.043540254208608e-16)
    sum e = 2.5920006446882007
    sum de = -6.505213034913027e-19
Info: CFL hydro = 0.0069966753869742165 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0069966753869742165 cfl multiplier : 0.6301381449306317       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6372e+04 |  512 |      1 | 3.127e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 568.5795399519883 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4678280424297816, dt = 0.0069966753869742165 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.26 us    (0.8%)
   patch tree reduce : 491.00 ns  (0.1%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 541.00 ns  (0.1%)
   LB compute        : 400.92 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.56 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.553175107253505e-18,-1.0824593174932339e-17,4.7218088813916206e-18)
    sum a = (4.4964032497318837e-17,1.3793653719229582e-17,1.4273738441206163e-16)
    sum e = 2.5920008496007325
    sum de = -9.554531645028508e-19
Info: CFL hydro = 0.008377401936757272 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008377401936757272 cfl multiplier : 0.7534254299537544        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6497e+04 |  512 |      1 | 3.104e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 811.5623255474134 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4748247178167557, dt = 0.008377401936757272 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 us    (0.8%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 361.00 ns  (0.1%)
   LB compute        : 395.63 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.69 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.950141858917067e-18,-1.0869235199384431e-17,5.974712911915869e-18)
    sum a = (-1.822916817495468e-16,9.709420767389786e-17,4.6275483445157303e-17)
    sum e = 2.5920010602752233
    sum de = 2.981555974335137e-19
Info: CFL hydro = 0.00931010200371742 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00931010200371742 cfl multiplier : 0.835616953302503          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6435e+04 |  512 |      1 | 3.115e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 968.0801058132762 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.483202119753513, dt = 0.00931010200371742 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.49 us    (0.8%)
   patch tree reduce : 571.00 ns  (0.1%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 712.00 ns  (0.2%)
   LB compute        : 403.39 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.83 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.698919626819568e-18,-9.419467159391126e-18,6.017159426968677e-18)
    sum a = (-5.2247269011207466e-17,-3.3441999169880885e-17,-6.917903749847909e-17)
    sum e = 2.5920012576971505
    sum de = -1.2468324983583301e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01044951528260055
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.978792543854694e-18,-1.0048114684052533e-17,5.520974302730685e-18)
    sum a = (2.6463206626026194e-18,9.461181837977506e-17,1.7915356698150476e-17)
    sum e = 2.592000490417984
    sum de = 0
Info: CFL hydro = 0.004971855907178742 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004971855907178742 cfl multiplier : 0.4452056511008344        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2644e+04 |  512 |      1 | 4.049e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 827.7078466659788 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4925122217572304, dt = 0.004971855907178742 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (0.8%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 414.32 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.32 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.545545355729487e-18,-9.237788756600446e-18,5.892747227675965e-18)
    sum a = (7.313680910892017e-17,-5.597085295239168e-17,-5.3980257763708294e-17)
    sum e = 2.592000706400994
    sum de = 1.0977546996415732e-18
Info: CFL hydro = 0.007043023205659414 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007043023205659414 cfl multiplier : 0.6301371007338896        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6498e+04 |  512 |      1 | 3.103e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 576.7549243787479 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4974840776644092, dt = 0.0025159223355908367 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (0.8%)
   patch tree reduce : 491.00 ns  (0.1%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 421.00 ns  (0.1%)
   LB compute        : 362.24 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.10 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.200118543575606e-18,-9.778067027940707e-18,5.688564853542633e-18)
    sum a = (-1.125740126117769e-16,1.1803058530546196e-17,1.4786609436878707e-16)
    sum e = 2.5920005397320756
    sum de = 1.1519648082658485e-19
Info: CFL hydro = 0.008425324747063418 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008425324747063418 cfl multiplier : 0.7534247338225931        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6568e+04 |  512 |      1 | 3.090e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 293.09249432198317 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 201                                                     [SPH][rank=0]
Info: time since start : 712.156585124 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14952648700874407 max=0.15040895984518038 delta=0.0008824728364363044
Number of particle pairs: 130816
Distance min=0.144713 max=1.919135 mean=0.806367
---------------- t = 1.5, dt = 0.008425324747063418 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.70 us    (1.4%)
   patch tree reduce : 1473.00 ns (0.2%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.1%)
   LB compute        : 656.92 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.35 us    (77.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.534988258339759e-18,-9.441788171617172e-18,7.113450453677395e-18)
    sum a = (5.578350281698618e-17,1.5358027349865466e-16,-5.70246974640476e-17)
    sum e = 2.592001157988398
    sum de = -9.24959978401696e-19
Info: CFL hydro = 0.009359956302364619 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009359956302364619 cfl multiplier : 0.8356164892150622        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5317e+04 |  512 |      1 | 3.343e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 907.4010101777659 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.5084253247470634, dt = 0.009359956302364619 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (0.8%)
   patch tree reduce : 682.00 ns  (0.2%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 431.00 ns  (0.1%)
   LB compute        : 372.82 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 1984.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (74.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.358195220323992e-18,-7.240789998835816e-18,5.695151381740482e-18)
    sum a = (3.140456644734613e-17,8.81014011744341e-17,-3.0748840973426895e-17)
    sum e = 2.5920013511589373
    sum de = -2.371692252312041e-18
Info: CFL hydro = 0.009975669436516635 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009975669436516635 cfl multiplier : 0.8904109928100414        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6717e+04 |  512 |      1 | 3.063e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1100.1826034940045 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.517785281049428, dt = 0.009975669436516635 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (0.8%)
   patch tree reduce : 481.00 ns  (0.1%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 461.00 ns  (0.1%)
   LB compute        : 377.22 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 1954.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.083024708947171e-18,-6.85877136336055e-18,5.560493471917782e-18)
    sum a = (-1.0189505489366369e-16,1.102555546861339e-16,-5.606452802009443e-17)
    sum e = 2.592001486126532
    sum de = -8.368685518872487e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010154320026241705
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.5865281978494394e-18,-6.753386912194959e-18,5.492066762306791e-18)
    sum a = (1.194708394713917e-16,1.1859263571167845e-16,-1.7744399699592962e-16)
    sum e = 2.592000492197793
    sum de = -7.962109704190423e-19
Info: CFL hydro = 0.0051920057333694584 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0051920057333694584 cfl multiplier : 0.4634703309366805       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2465e+04 |  512 |      1 | 4.108e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 874.2796251707634 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.5277609504859446, dt = 0.0051920057333694584 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.37 us    (0.8%)
   patch tree reduce : 571.00 ns  (0.1%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 531.00 ns  (0.1%)
   LB compute        : 403.97 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.23 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.953069204782778e-18,-5.898601919407387e-18,3.9036157119254345e-18)
    sum a = (1.0002740823134016e-16,-1.7498502646873249e-16,7.734047777208098e-17)
    sum e = 2.592000759028751
    sum de = -2.3445871979999033e-18
Info: CFL hydro = 0.0071950213476529145 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0071950213476529145 cfl multiplier : 0.642313553957787        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6766e+04 |  512 |      1 | 3.054e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 612.0710085721365 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.532952956219314, dt = 0.0071950213476529145 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (0.7%)
   patch tree reduce : 451.00 ns  (0.1%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 511.00 ns  (0.1%)
   LB compute        : 425.03 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 2.17 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.2563608887435936e-18,-7.985799521659232e-18,5.1433466860539845e-18)
    sum a = (6.336532860917732e-17,8.575952448186541e-17,-7.272698068772066e-17)
    sum e = 2.5920010009035566
    sum de = -5.268544931921748e-19
Info: CFL hydro = 0.008528583809079858 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008528583809079858 cfl multiplier : 0.7615423693051913        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7080e+04 |  512 |      1 | 2.998e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 864.079942788166 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.5401479775669669, dt = 0.008528583809079858 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.25 us    (0.8%)
   patch tree reduce : 591.00 ns  (0.1%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 601.00 ns  (0.1%)
   LB compute        : 393.37 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.26 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.7470027081099036e-18,-6.469434363221005e-18,3.921545705352913e-18)
    sum a = (3.235046508020395e-17,1.789193793122479e-17,-2.1627231255871848e-17)
    sum e = 2.5920011913195444
    sum de = 9.808641529204798e-19
Info: CFL hydro = 0.009412978495345503 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009412978495345503 cfl multiplier : 0.8410282462034608        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6287e+04 |  512 |      1 | 3.144e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 976.677575877653 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.5486765613760467, dt = 0.009412978495345503 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (0.8%)
   patch tree reduce : 571.00 ns  (0.1%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 331.00 ns  (0.1%)
   LB compute        : 396.09 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.19 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.776276166767012e-18,-6.308430340606908e-18,4.066083407472387e-18)
    sum a = (-9.19537883337096e-17,-4.871103520542874e-17,-1.224918604048053e-16)
    sum e = 2.5920013095659358
    sum de = -1.5132243602698076e-18
Info: CFL hydro = 0.010002198129642162 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010002198129642162 cfl multiplier : 0.8940188308023073        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7038e+04 |  512 |      1 | 3.005e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1127.6710513068342 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5580895398713923, dt = 0.010002198129642162 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (0.8%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 340.00 ns  (0.1%)
   LB compute        : 365.88 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.02 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.280931941742395e-18,-7.207125521380143e-18,2.4390737232661207e-18)
    sum a = (-5.3500173041731713e-17,-1.3341671517563824e-16,-2.836598143873825e-17)
    sum e = 2.592001358643027
    sum de = 1.607668533888662e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01112636491095757
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.087727114605478e-18,-7.54377029593689e-18,2.8461577577165374e-18)
    sum a = (1.1602828073331573e-16,-8.957678349075238e-17,6.510417205340957e-17)
    sum e = 2.592000477043113
    sum de = 5.683591076076355e-19
Info: CFL hydro = 0.005195827874569261 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005195827874569261 cfl multiplier : 0.4646729436007691        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1195e+04 |  512 |      1 | 4.574e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 787.2988257681677 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.5680917380010344, dt = 0.005195827874569261 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (0.7%)
   patch tree reduce : 391.00 ns  (0.1%)
   gen split merge   : 401.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 381.00 ns  (0.1%)
   LB compute        : 398.86 us  (97.7%)
   LB move op cnt    : 0
   LB apply          : 2.03 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (74.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4425587380759736e-18,-7.856996303567954e-18,3.680336979996254e-18)
    sum a = (-1.1019700776881969e-16,1.1639127162066387e-16,-8.972900547576935e-17)
    sum e = 2.5920007149467916
    sum de = -2.4123498337802474e-18
Info: CFL hydro = 0.007181776879038158 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007181776879038158 cfl multiplier : 0.6431152957338461        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2892e+04 |  512 |      1 | 3.971e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 471.0032030882669 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.5732875658756036, dt = 0.007181776879038158 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (1.2%)
   patch tree reduce : 1362.00 ns (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 362.06 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (75.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.011616122096995e-18,-6.440160904563896e-18,2.6228561558977805e-18)
    sum a = (1.0678957718113225e-16,2.2763041451767662e-17,-8.947139903958678e-17)
    sum e = 2.5920008967763546
    sum de = -5.675120746603812e-19
Info: CFL hydro = 0.00849690938192788 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00849690938192788 cfl multiplier : 0.7620768638225641         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3106e+04 |  512 |      1 | 3.907e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 661.823474225473 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.5804693427546417, dt = 0.00849690938192788 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.71 us    (1.0%)
   patch tree reduce : 921.00 ns  (0.2%)
   gen split merge   : 602.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 372.46 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 2.60 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.032730316876453e-18,-6.639220423432235e-18,1.911007972959372e-18)
    sum a = (-6.419084014330779e-17,2.393397979805201e-17,2.3407057542224052e-17)
    sum e = 2.5920010163874383
    sum de = 1.362028979184915e-18
Info: CFL hydro = 0.009356037177365363 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009356037177365363 cfl multiplier : 0.8413845758817095        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6513e+04 |  512 |      1 | 3.101e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 986.5480327717704 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.5889662521365695, dt = 0.009356037177365363 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (0.8%)
   patch tree reduce : 581.00 ns  (0.1%)
   gen split merge   : 571.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 612.00 ns  (0.1%)
   LB compute        : 398.72 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.26 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.572514242240366e-18,-6.498707821878113e-18,2.6020445563837422e-18)
    sum a = (-8.04200456228088e-17,-5.189598750732216e-17,-6.99928396491467e-17)
    sum e = 2.592001066687352
    sum de = 1.7110065534536867e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010492822687869482
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.443711024149088e-18,-6.75924160392638e-18,2.1290952399548314e-18)
    sum a = (4.571343303894082e-17,8.791405103902861e-17,-1.7104481893348566e-17)
    sum e = 2.592000473262922
    sum de = 9.961107459710572e-19
Info: CFL hydro = 0.004960171790504488 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004960171790504488 cfl multiplier : 0.44712819196056985       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2368e+04 |  512 |      1 | 4.140e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 813.6490093189493 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.5983222893139348, dt = 0.004960171790504488 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.2%)
   patch tree reduce : 1113.00 ns (0.3%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 373.58 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.787985550229856e-18,-5.46828207714789e-18,2.3468165887170767e-18)
    sum a = (6.976450667162126e-17,-5.854691731421724e-18,4.7057084791302104e-17)
    sum e = 2.592000639910608
    sum de = -2.9408983928669308e-18
Info: CFL hydro = 0.006995974543377517 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006995974543377517 cfl multiplier : 0.6314187946403799        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6992e+04 |  512 |      1 | 3.013e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 592.6035983563836 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6032824611044394, dt = 0.006995974543377517 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.22 us    (0.8%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 521.00 ns  (0.1%)
   LB compute        : 376.61 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.50 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (75.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.644545602810023e-18,-5.6585595584190965e-18,2.669556470411699e-18)
    sum a = (-5.196624380809922e-17,8.501012394024343e-18,-6.523297527150085e-17)
    sum e = 2.592000771721286
    sum de = -1.026603932072212e-18
Info: CFL hydro = 0.00834501340150112 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00834501340150112 cfl multiplier : 0.7542791964269199         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6580e+04 |  512 |      1 | 3.088e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 815.5759840521135 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6102784356478168, dt = 0.00834501340150112 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (0.8%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 401.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 451.00 ns  (0.1%)
   LB compute        : 385.07 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.22 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.1187756330551825e-18,-5.714179129867603e-18,1.929486843736672e-18)
    sum a = (-8.163782150294452e-17,9.044327786700279e-17,7.121939756687957e-17)
    sum e = 2.5920008568507416
    sum de = 1.2434443665693129e-18
Info: CFL hydro = 0.009238771118362549 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009238771118362549 cfl multiplier : 0.83618613095128          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6243e+04 |  512 |      1 | 3.152e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 953.0711781232679 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6186234490493179, dt = 0.009238771118362549 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (0.8%)
   patch tree reduce : 451.00 ns  (0.1%)
   gen split merge   : 461.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 451.00 ns  (0.1%)
   LB compute        : 360.65 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.07 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.950141858917067e-18,-4.730590918988753e-18,3.104816208819583e-18)
    sum a = (-8.407337326321595e-17,2.5620131016701464e-17,9.372007564543289e-17)
    sum e = 2.5920008962469385
    sum de = -3.432177502274425e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010294224757670837
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.405655527894847e-18,-4.950141858917067e-18,3.1865989339428803e-18)
    sum a = (5.887478005117686e-17,5.4378376801444974e-17,1.78447344791402e-17)
    sum e = 2.592000474024491
    sum de = -1.196010521523072e-18
Info: CFL hydro = 0.004917509625636516 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004917509625636516 cfl multiplier : 0.44539537698376          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2802e+04 |  512 |      1 | 3.999e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 831.6216284915594 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6278622201676805, dt = 0.004917509625636516 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (0.8%)
   patch tree reduce : 510.00 ns  (0.1%)
   gen split merge   : 410.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 622.00 ns  (0.2%)
   LB compute        : 387.28 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.29 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.931425497649688e-18,-4.55202282118039e-18,3.0175447101980778e-18)
    sum a = (8.608738721882502e-17,-7.996923435948933e-17,-1.3624526311838137e-16)
    sum e = 2.592000593008581
    sum de = 3.245830253878479e-18
Info: CFL hydro = 0.00695555039889272 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00695555039889272 cfl multiplier : 0.63026358465584           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6566e+04 |  512 |      1 | 3.091e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 572.7977373479331 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6327797297933169, dt = 0.00695555039889272 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 us    (0.9%)
   patch tree reduce : 481.00 ns  (0.1%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 581.00 ns  (0.2%)
   LB compute        : 364.27 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.17 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.477686888464504e-18,-5.260440520682419e-18,1.4472066123608073e-18)
    sum a = (1.313324449192521e-16,-3.980019439020488e-17,-2.331118696512202e-17)
    sum e = 2.592000693994655
    sum de = -1.9583401740519424e-18
Info: CFL hydro = 0.008308372845793496 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008308372845793496 cfl multiplier : 0.7535090564372267        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6463e+04 |  512 |      1 | 3.110e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 805.1326807878315 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6397352801922096, dt = 0.008308372845793496 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (0.8%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 341.00 ns  (0.1%)
   LB compute        : 365.20 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.16 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2101461286117006e-18,-5.6790509794790725e-18,1.8766116590372696e-18)
    sum a = (-6.936638763388459e-17,-3.1830495270807057e-17,-4.3375947365170696e-17)
    sum e = 2.5920007700955194
    sum de = -9.215718466126788e-19
Info: CFL hydro = 0.009208316721976912 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009208316721976912 cfl multiplier : 0.8356727042914844        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6885e+04 |  512 |      1 | 3.032e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 986.3938073909725 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6480436530380032, dt = 0.009208316721976912 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (0.9%)
   patch tree reduce : 681.00 ns  (0.2%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 541.00 ns  (0.1%)
   LB compute        : 355.11 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.37 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.585998685495806e-18,-6.039114520961508e-18,1.2148485342700077e-18)
    sum a = (1.9484414082171496e-17,-1.427315297203302e-16,-3.1934416049039794e-17)
    sum e = 2.592000825678609
    sum de = -2.2158381900172497e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010240824481759525
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.196661685356261e-18,-6.358195220323992e-18,1.3527997081916321e-18)
    sum a = (8.636841242193327e-17,-6.229392002232714e-17,2.2871353248798964e-17)
    sum e = 2.5920004807652393
    sum de = 1.0909784360635388e-18
Info: CFL hydro = 0.004906094137975235 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004906094137975235 cfl multiplier : 0.44522423476382816       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2516e+04 |  512 |      1 | 4.091e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 810.3918531371959 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6572519697599801, dt = 0.004906094137975235 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.79 us    (0.9%)
   patch tree reduce : 1102.00 ns (0.3%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.3%)
   LB compute        : 391.78 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.201364091014568e-18,-6.35234052859257e-18,1.6405943986143313e-18)
    sum a = (7.550210456841455e-17,4.635744912939721e-17,1.056186388348479e-17)
    sum e = 2.592000577263908
    sum de = 2.4530074152484538e-18
Info: CFL hydro = 0.006944132619120372 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006944132619120372 cfl multiplier : 0.6301494898425521        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6998e+04 |  512 |      1 | 3.012e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 586.3578567696578 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6621580638979554, dt = 0.006944132619120372 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.35 us    (0.8%)
   patch tree reduce : 441.00 ns  (0.1%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 381.00 ns  (0.1%)
   LB compute        : 392.47 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.63 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9920588616162416e-18,-5.878110498347411e-18,1.770312412288644e-18)
    sum a = (-1.3283124600249608e-16,7.326561232701145e-17,-3.307315359080132e-17)
    sum e = 2.592000677715508
    sum de = -1.599198204416119e-18
Info: CFL hydro = 0.008305440751579256 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008305440751579256 cfl multiplier : 0.7534329932283681        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6508e+04 |  512 |      1 | 3.102e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 806.0245830105194 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6691021965170758, dt = 0.008305440751579256 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.32 us    (0.9%)
   patch tree reduce : 441.00 ns  (0.1%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 441.00 ns  (0.1%)
   LB compute        : 368.89 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.65 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.787985550229856e-18,-5.1433466860539845e-18,1.4109807072726354e-18)
    sum a = (-6.501049698570682e-17,3.44958436815368e-17,1.0866015118932148e-16)
    sum e = 2.5920007735398545
    sum de = 9.0801931945661e-19
Info: CFL hydro = 0.009218741566437576 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009218741566437576 cfl multiplier : 0.8356219954855787        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6947e+04 |  512 |      1 | 3.021e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 989.6848490622134 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.677407637268655, dt = 0.009218741566437576 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (0.8%)
   patch tree reduce : 521.00 ns  (0.1%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 350.00 ns  (0.1%)
   LB compute        : 368.62 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.65 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.102675230793773e-18,-4.935505129588513e-18,2.991564515639894e-18)
    sum a = (-1.016842859913325e-16,1.857108217206971e-17,-1.6217496096038177e-17)
    sum e = 2.5920008663546983
    sum de = 1.5043305143236374e-18
Info: CFL hydro = 0.009836635400369942 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009836635400369942 cfl multiplier : 0.8904146636570524        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6523e+04 |  512 |      1 | 3.099e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1071.0041340289208 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6866263788350926, dt = 0.009836635400369942 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (0.8%)
   patch tree reduce : 551.00 ns  (0.1%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 691.00 ns  (0.2%)
   LB compute        : 388.26 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.42 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.12633148820954e-18,-4.85646679121432e-18,2.352854239565105e-18)
    sum a = (1.4290131578054143e-16,2.7189188400722487e-17,4.099747884928062e-17)
    sum e = 2.592000961872654
    sum de = 8.809142651444724e-20
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010731019379209865
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.999486289027465e-18,-4.78913783630297e-18,2.5634401827796802e-18)
    sum a = (-1.9737336764968917e-16,-1.442596042622313e-17,5.860839157739717e-17)
    sum e = 2.5920005026991566
    sum de = -5.082197683525802e-19
Info: CFL hydro = 0.005131632514982953 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005131632514982953 cfl multiplier : 0.46347155455235073       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2391e+04 |  512 |      1 | 4.132e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 856.9748112525078 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6964630142354626, dt = 0.005131632514982953 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (0.8%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 340.00 ns  (0.1%)
   LB compute        : 382.55 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.15 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.41 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.7409456922656875e-18,-4.751082340048729e-18,2.9342525723627735e-18)
    sum a = (-7.390962841746785e-17,7.079493241635148e-17,8.398848023311035e-17)
    sum e = 2.5920006241147506
    sum de = -3.3203691532368573e-19
Info: CFL hydro = 0.0071162255943014955 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0071162255943014955 cfl multiplier : 0.6423143697015671       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6253e+04 |  512 |      1 | 3.150e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 586.4468002625101 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7015946467504457, dt = 0.0071162255943014955 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.74 us    (1.0%)
   patch tree reduce : 781.00 ns  (0.2%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 431.00 ns  (0.1%)
   LB compute        : 369.19 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.62 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.13760105706951e-18,-4.437856332417667e-18,3.628765379002676e-18)
    sum a = (-3.1427985214271816e-17,-6.346485836861149e-18,5.0994364980683214e-18)
    sum e = 2.5920007645622283
    sum de = 1.497554250745603e-18
Info: CFL hydro = 0.008438828175248523 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008438828175248523 cfl multiplier : 0.7615429131343779        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6384e+04 |  512 |      1 | 3.125e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 819.7721109709165 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7087108723447473, dt = 0.008438828175248523 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (0.7%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 321.00 ns  (0.1%)
   LB compute        : 419.29 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 2.32 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.194684301450871e-18,-4.6486252347488486e-18,3.425086142440012e-18)
    sum a = (5.194282504117354e-17,-5.98583682620557e-17,6.814861175374886e-17)
    sum e = 2.5920009085305815
    sum de = 6.640738306473715e-19
Info: CFL hydro = 0.009314959845294212 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009314959845294212 cfl multiplier : 0.8410286087562518        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6773e+04 |  512 |      1 | 3.053e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 995.2375160886046 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7171497005199958, dt = 0.009314959845294212 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (0.8%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 360.00 ns  (0.1%)
   LB compute        : 392.80 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 2.31 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.418205810571065e-18,-5.418517197430805e-18,4.345827896764382e-18)
    sum a = (3.9203015833599864e-17,-3.2317898357447914e-17,-8.741054755012634e-18)
    sum e = 2.5920010474246773
    sum de = 6.301925127571995e-19
Info: CFL hydro = 0.009900366133619616 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009900366133619616 cfl multiplier : 0.8940190725041678        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6166e+04 |  512 |      1 | 3.167e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1058.8056928167443 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.72646466036529, dt = 0.009900366133619616 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.34 us    (1.1%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 682.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 384.52 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 2.73 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.099125111208581e-18,-5.474136768879312e-18,3.9256622854765696e-18)
    sum a = (9.88271964263987e-18,1.0964666674606605e-16,1.0118370984829595e-17)
    sum e = 2.5920011771564497
    sum de = 1.4230153513872246e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010793248394816529
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.143035299194244e-18,-4.736445610720175e-18,4.014992074159902e-18)
    sum a = (4.309053114326389e-17,-1.1245691877714847e-16,-4.257678194383163e-17)
    sum e = 2.592000525085599
    sum de = -1.345088320239829e-18
Info: CFL hydro = 0.005148469947192181 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005148469947192181 cfl multiplier : 0.4646730241680559        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2158e+04 |  512 |      1 | 4.211e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 846.3365036541464 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7363650264989097, dt = 0.005148469947192181 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.2%)
   patch tree reduce : 1923.00 ns (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 406.78 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (73.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.728815859196157e-18,-6.476752727885282e-18,3.4267327744894744e-18)
    sum a = (8.875712664835333e-17,1.167191343576235e-16,-2.8035923192379355e-17)
    sum e = 2.5920006974503265
    sum de = -6.640738306473715e-19
Info: CFL hydro = 0.007127609431497857 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007127609431497857 cfl multiplier : 0.6431153494453706        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 8.5273e+03 |  512 |      1 | 6.004e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.69055969725895 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7415134964461019, dt = 0.007127609431497857 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (0.7%)
   patch tree reduce : 2.09 us    (0.2%)
   gen split merge   : 901.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.1%)
   LB compute        : 828.50 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.18 us    (81.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.081872422874056e-18,-5.226776043226744e-18,3.226758460038101e-18)
    sum a = (6.739921121212689e-17,-6.30901580978005e-17,9.4425200080836e-18)
    sum e = 2.5920008827076386
    sum de = -1.6059744679941534e-18
Info: CFL hydro = 0.008451351673079891 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008451351673079891 cfl multiplier : 0.7620768996302472        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2518e+04 |  512 |      1 | 4.090e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 627.3691680280104 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7486411058775997, dt = 0.008451351673079891 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (0.2%)
   patch tree reduce : 1663.00 ns (0.1%)
   gen split merge   : 711.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.0%)
   LB compute        : 2.43 ms    (99.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.83 us    (75.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.7013174603316445e-18,-6.276961372550516e-18,3.432587466220896e-18)
    sum a = (6.327750823320599e-17,-2.8617733183189386e-17,3.366630704684098e-17)
    sum e = 2.5920010572185297
    sum de = 1.6093625997831706e-19
Info: CFL hydro = 0.009337817473755563 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009337817473755563 cfl multiplier : 0.8413845997534981        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.9930e+03 |  512 |      1 | 7.322e-02 | 0.0% |   0.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 415.5514533170257 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7570924575506797, dt = 0.009337817473755563 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.0%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 458.96 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.054374024009544e-18,-6.29159810187907e-18,3.802759498895865e-18)
    sum a = (-1.4318234098364968e-16,-1.1751537243309683e-16,1.2514330392267292e-16)
    sum e = 2.5920012047458867
    sum de = 3.3203691532368573e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010383947323541023
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.976487971708465e-18,-6.97074234272399e-18,4.152623069627464e-18)
    sum a = (7.910859467497034e-17,-1.0899094127214681e-16,-6.906853019204851e-17)
    sum e = 2.592000526656863
    sum de = 1.6263032587282567e-18
Info: CFL hydro = 0.004959589316291151 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004959589316291151 cfl multiplier : 0.4471281999178327        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 7.7697e+03 |  512 |      1 | 6.590e-02 | 0.0% |   1.2% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 510.1347096135465 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7664302750244352, dt = 0.004959589316291151 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.01 us    (1.0%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 401.31 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4484134298073955e-18,-7.152237786398063e-18,2.9753726338201806e-18)
    sum a = (-4.421463195569686e-17,7.582996730537417e-17,-2.3788344341232893e-16)
    sum e = 2.5920007158010323
    sum de = -3.7269449679189215e-19
Info: CFL hydro = 0.007001914726372388 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007001914726372388 cfl multiplier : 0.6314187999452218        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 7.7934e+03 |  512 |      1 | 6.570e-02 | 0.0% |   0.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 271.7722341011211 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7713898643407264, dt = 0.007001914726372388 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.2%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 413.86 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (72.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.004609144292459e-18,-6.428451521101053e-18,8.95744965017948e-19)
    sum a = (-3.2317898357447914e-17,1.100682045507284e-17,6.093563154063731e-17)
    sum e = 2.592000913463716
    sum de = -1.2828313986166379e-18
Info: CFL hydro = 0.008363104159678456 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008363104159678456 cfl multiplier : 0.7542791999634811        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 9.4330e+03 |  512 |      1 | 5.428e-02 | 0.0% |   1.0% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 464.40644037650776 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7783917790670989, dt = 0.008363104159678456 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (0.9%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 489.32 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.411510219626269e-18,-6.609215128308698e-18,2.4390737232661207e-18)
    sum a = (2.3114322955652967e-17,-1.656643572323091e-16,-4.248457054906174e-17)
    sum e = 2.59200108437818
    sum de = 1.381934253445391e-18
Info: CFL hydro = 0.009272673469969267 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009272673469969267 cfl multiplier : 0.8361861333089875        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 8.5929e+03 |  512 |      1 | 5.958e-02 | 0.0% |   0.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 505.28630889233517 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7867548832267774, dt = 0.009272673469969267 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (1.0%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 442.29 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (75.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.086574828532363e-18,-8.655429888440591e-18,1.6620349200917057e-18)
    sum a = (6.175528838303634e-17,2.014013955609073e-17,6.168503208225928e-17)
    sum e = 2.592001210326309
    sum de = -4.489274620447792e-20
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01005965149722156
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.817259008886964e-18,-7.727461249010248e-18,2.142634214583744e-18)
    sum a = (1.5151942200919423e-17,-8.936601458842119e-17,3.515742384718745e-18)
    sum e = 2.5920005250764984
    sum de = 3.5151867311053464e-19
Info: CFL hydro = 0.004942958925064961 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004942958925064961 cfl multiplier : 0.4453953777696625        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 8.1516e+03 |  512 |      1 | 6.281e-02 | 0.0% |   1.2% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 531.4730573370441 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7960275566967467, dt = 0.004942958925064961 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.50 us    (1.1%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1163.00 ns (0.3%)
   LB compute        : 403.33 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.787985550229856e-18,-8.833997986248953e-18,1.8258405041788468e-18)
    sum a = (1.402784138848645e-17,4.3418393880223505e-17,-1.4648438712017154e-17)
    sum e = 2.5920007184408065
    sum de = 2.3894799442043813e-18
Info: CFL hydro = 0.006997691333508357 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006997691333508357 cfl multiplier : 0.630263585179775         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4046e+04 |  512 |      1 | 3.645e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 488.1594837164387 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8009705156218117, dt = 0.006997691333508357 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.69 us    (0.9%)
   patch tree reduce : 1243.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 407.08 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.91 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.787985550229856e-18,-8.042882766040594e-18,1.5697892204874497e-18)
    sum a = (-5.3371369823640437e-17,-2.014013955609073e-18,-1.072111149857946e-16)
    sum e = 2.592000904755501
    sum de = -6.860966872759833e-19
Info: CFL hydro = 0.008373122649643374 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008373122649643374 cfl multiplier : 0.7535090567865167        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6343e+04 |  512 |      1 | 3.133e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 804.0951650541288 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.80796820695532, dt = 0.008373122649643374 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (0.8%)
   patch tree reduce : 741.00 ns  (0.2%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 451.00 ns  (0.1%)
   LB compute        : 386.60 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.62 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.396873490297715e-18,-8.221450863848955e-18,4.702964092381106e-19)
    sum a = (4.8195822333063634e-17,-5.1708637371916666e-17,-1.741770790097963e-17)
    sum e = 2.5920010524311405
    sum de = -6.2849844686269085e-19
Info: CFL hydro = 0.009292088497641663 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009292088497641663 cfl multiplier : 0.8356727045243444        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1740e+04 |  512 |      1 | 4.361e-02 | 0.0% |   1.1% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 691.2024218264797 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8163413296049633, dt = 0.009292088497641663 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.42 us    (1.1%)
   patch tree reduce : 1893.00 ns (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1153.00 ns (0.3%)
   LB compute        : 400.59 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.7060198659899515e-18,-9.162592559674999e-18,6.284645655448007e-19)
    sum a = (-4.1615148826945613e-17,-1.256182657893845e-16,-5.459500039550758e-17)
    sum e = 2.5920011462053036
    sum de = 8.843023969334896e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01022371316031199
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.6826010990642645e-18,-9.420198995857553e-18,4.34710861058063e-19)
    sum a = (-1.226792105402108e-16,8.89913143176102e-19,8.416119363918728e-17)
    sum e = 2.592000521647245
    sum de = -1.0503208545953324e-18
Info: CFL hydro = 0.004945434176171734 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004945434176171734 cfl multiplier : 0.44522423484144813       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2601e+04 |  512 |      1 | 4.063e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 823.2553388210097 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.825633418102605, dt = 0.004945434176171734 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.61 us    (0.9%)
   patch tree reduce : 1202.00 ns (0.3%)
   gen split merge   : 492.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.2%)
   LB compute        : 408.16 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.800847219765814e-18,-8.817165747521116e-18,1.4977033285443197e-18)
    sum a = (5.478820522264449e-17,-1.0407300021775256e-16,-1.3850444229024373e-16)
    sum e = 2.592000697749367
    sum de = 1.7313353441877899e-18
Info: CFL hydro = 0.0069958136109162326 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0069958136109162326 cfl multiplier : 0.6301494898942988       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6344e+04 |  512 |      1 | 3.133e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 568.3187173525376 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8305788522787767, dt = 0.0069958136109162326 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (0.8%)
   patch tree reduce : 892.00 ns  (0.2%)
   gen split merge   : 431.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 541.00 ns  (0.1%)
   LB compute        : 388.50 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.75 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.1509764375780024e-18,-9.88271964263987e-18,4.391018798566293e-21)
    sum a = (1.2200006629936588e-16,1.0772632785815972e-17,-4.602373170070617e-17)
    sum e = 2.592000855068154
    sum de = -2.6834003769016235e-18
Info: CFL hydro = 0.008359742107550723 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008359742107550723 cfl multiplier : 0.7534329932628658        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6219e+04 |  512 |      1 | 3.157e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 797.7845632638587 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.837574665889693, dt = 0.008359742107550723 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.51 us    (0.9%)
   patch tree reduce : 661.00 ns  (0.2%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 341.00 ns  (0.1%)
   LB compute        : 389.10 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.73 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.8102520310824273e-18,-9.428981033454686e-18,-1.3356015512305808e-19)
    sum a = (2.703477090630624e-17,2.2388341180956673e-17,-9.270318887533157e-17)
    sum e = 2.59200097040777
    sum de = -1.2536087619363645e-19
Info: CFL hydro = 0.009267930315738353 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009267930315738353 cfl multiplier : 0.8356219955085772        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6530e+04 |  512 |      1 | 3.097e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 971.5949378904726 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8459344079972437, dt = 0.009267930315738353 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.82 us    (0.9%)
   patch tree reduce : 1071.00 ns (0.3%)
   gen split merge   : 601.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 581.00 ns  (0.1%)
   LB compute        : 401.84 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.81 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0502943920707182e-18,-9.177229289003552e-18,-1.2126530248707245e-18)
    sum a = (1.789779262295621e-17,1.8842739868407675e-16,-4.10999359545805e-17)
    sum e = 2.592001036406812
    sum de = 2.371692252312041e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011240909820947524
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0502943920707182e-18,-8.173149657064727e-18,-1.0578696122212628e-18)
    sum a = (1.4842229008327212e-16,5.1989662575024907e-17,1.6276043013352393e-17)
    sum e = 2.592000519814754
    sum de = 3.0222135558033436e-18
Info: CFL hydro = 0.004938168438014925 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004938168438014925 cfl multiplier : 0.4452073318361924        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2308e+04 |  512 |      1 | 4.160e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 802.0519619061413 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.855202338312982, dt = 0.004938168438014925 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.71 us    (0.8%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 651.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 731.00 ns  (0.2%)
   LB compute        : 465.82 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8325185119349997e-18,-8.714708642221237e-18,-6.652393479827934e-19)
    sum a = (3.741148016378482e-18,4.316078744404095e-17,-1.0075924469776787e-17)
    sum e = 2.5920006658023036
    sum de = 2.812149384884277e-19
Info: CFL hydro = 0.006989788081000075 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006989788081000075 cfl multiplier : 0.6301382212241283        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6334e+04 |  512 |      1 | 3.135e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 567.1518280172127 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.860140506750997, dt = 0.006989788081000075 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.80 us    (0.9%)
   patch tree reduce : 1422.00 ns (0.4%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.2%)
   LB compute        : 386.00 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.119398406774664e-18,-8.340008371410246e-18,-8.588100933529241e-19)
    sum a = (2.078415564654712e-17,8.051372069051154e-17,-1.7106823770041135e-16)
    sum e = 2.592000793713436
    sum de = 1.954952042262925e-18
Info: CFL hydro = 0.008355090197894547 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008355090197894547 cfl multiplier : 0.7534254808160856        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6665e+04 |  512 |      1 | 3.072e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 819.0463104464598 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8671302948319972, dt = 0.008355090197894547 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.72 us    (0.9%)
   patch tree reduce : 1132.00 ns (0.3%)
   gen split merge   : 652.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 401.27 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (72.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8090997450093127e-18,-7.414967077845614e-18,-2.815740804580635e-18)
    sum a = (-9.188353203293254e-17,-9.156737867943577e-18,1.4144935223114885e-17)
    sum e = 2.592000888244049
    sum de = -4.2012834183813297e-19
Info: CFL hydro = 0.009266090080192461 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009266090080192461 cfl multiplier : 0.8356169872107237        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5072e+04 |  512 |      1 | 3.397e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 885.4042810215523 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8754853850298918, dt = 0.009266090080192461 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.24 us    (0.8%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 511.00 ns  (0.1%)
   LB compute        : 387.07 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.46 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.196661685356261e-18,-7.883342416359351e-18,-1.8552054423942586e-18)
    sum a = (-5.962418059279884e-17,7.379253458283941e-17,-5.91558052542851e-17)
    sum e = 2.5920009477376413
    sum de = 2.859583229930518e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011226568781440958
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.2727726778647437e-18,-7.584753138056843e-18,-2.14464676486642e-18)
    sum a = (-2.985892783025079e-17,2.693158196453993e-17,6.285597042854363e-17)
    sum e = 2.5920005218797235
    sum de = 3.1848438816761693e-19
Info: CFL hydro = 0.004938632964360409 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004938632964360409 cfl multiplier : 0.44520566240357456       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2688e+04 |  512 |      1 | 4.035e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 826.6253842540036 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8847514751100842, dt = 0.004938632964360409 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.30 us    (1.0%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 398.70 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.2317898357447916e-18,-7.660864130565326e-18,-1.1328828500301036e-18)
    sum a = (-6.955373776929008e-17,-2.0812258166857943e-16,-8.568341348935693e-17)
    sum e = 2.5920006418865835
    sum de = 8.74138001566438e-19
Info: CFL hydro = 0.006988572406468797 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006988572406468797 cfl multiplier : 0.6301371082690497        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6336e+04 |  512 |      1 | 3.134e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 567.2561226378596 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8896901080744446, dt = 0.006988572406468797 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.17 us    (0.6%)
   patch tree reduce : 1383.00 ns (0.2%)
   gen split merge   : 691.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.1%)
   LB compute        : 723.46 us  (97.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (73.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.840677775812651e-18,-9.7831898832057e-18,-2.325044453840852e-18)
    sum a = (3.0725422206501207e-17,1.5136720002417725e-16,1.1212320134845743e-16)
    sum e = 2.592000754028799
    sum de = 3.9302328752599536e-19
Info: CFL hydro = 0.008355051674435773 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008355051674435773 cfl multiplier : 0.7534247388460331        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6511e+04 |  512 |      1 | 3.101e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 811.3208460785216 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8966786804809135, dt = 0.008355051674435773 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (1.2%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 702.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 376.90 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.3254649034475393e-18,-7.040266807034623e-18,-6.462115998556728e-19)
    sum a = (1.466951560225027e-16,-4.828949740076638e-17,7.375740643245088e-17)
    sum e = 2.5920008468320863
    sum de = -2.846030702774449e-19
Info: CFL hydro = 0.009268080125049148 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009268080125049148 cfl multiplier : 0.835616492564022         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6562e+04 |  512 |      1 | 3.091e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 972.9568647772929 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.9050337321553492, dt = 0.009268080125049148 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.12 us    (1.0%)
   patch tree reduce : 1332.00 ns (0.3%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 378.83 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2353399553299838e-18,-8.436610784978703e-18,-1.7637258840907942e-19)
    sum a = (-2.51985932120391e-17,-2.7391175265456537e-17,-3.831310269042376e-17)
    sum e = 2.5920009203309355
    sum de = -8.809142651444724e-20
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010597999902883338
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1720906323574595e-18,-8.383918559395909e-18,-7.150042276998781e-19)
    sum a = (2.2435178714808046e-17,2.906854444650886e-17,-8.767400867804031e-18)
    sum e = 2.592000527977414
    sum de = -2.0328790734103208e-19
Info: CFL hydro = 0.00494048284349728 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00494048284349728 cfl multiplier : 0.44520549752134064        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2484e+04 |  512 |      1 | 4.101e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 813.5075406859834 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.9143018122803983, dt = 0.00494048284349728 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.44 us    (1.0%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 436.14 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5544206546924677e-18,-7.842359574239399e-18,-5.883965190078832e-19)
    sum a = (-6.009255593131257e-17,-4.684814548013699e-17,6.327750823320599e-17)
    sum e = 2.5920006379917546
    sum de = -1.3552527156068805e-18
Info: CFL hydro = 0.00699438240681998 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00699438240681998 cfl multiplier : 0.6301369983475604         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6666e+04 |  512 |      1 | 3.072e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 578.9284593450639 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.9192422951238957, dt = 0.00699438240681998 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.1%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 402.56 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.63 us    (45.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4853166399885216e-18,-8.269752070633186e-18,-4.9033043250656936e-20)
    sum a = (9.170789128098988e-17,1.3037813016703038e-16,-7.674915390720738e-17)
    sum e = 2.592000754581358
    sum de = -1.5924219408380846e-18
Info: CFL hydro = 0.008359260461048375 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008359260461048375 cfl multiplier : 0.7534246655650403        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6768e+04 |  512 |      1 | 3.053e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 824.6240784360012 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.9262366775307156, dt = 0.008359260461048375 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (0.8%)
   patch tree reduce : 652.00 ns  (0.2%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 431.00 ns  (0.1%)
   LB compute        : 374.06 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.50 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.103609391372995e-18,-6.700694686612163e-18,-1.1811840568143329e-18)
    sum a = (-6.501049698570682e-17,-6.93956610925417e-17,7.174778349564037e-17)
    sum e = 2.5920008632375646
    sum de = 8.063753657860939e-19
Info: CFL hydro = 0.009269301501259049 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009269301501259049 cfl multiplier : 0.8356164437100269        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6754e+04 |  512 |      1 | 3.056e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 984.7176164955234 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.9345959379917639, dt = 0.009269301501259049 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (0.8%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 411.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 551.00 ns  (0.1%)
   LB compute        : 410.17 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.90 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.374077497091509e-18,-8.138021506676197e-18,1.185575075612899e-19)
    sum a = (8.852293897909646e-18,-4.8219241099989315e-17,-1.9958644112416655e-17)
    sum e = 2.5920009614572006
    sum de = -1.2502206301473473e-18
Info: CFL hydro = 0.00987873043821211 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00987873043821211 cfl multiplier : 0.8904109624733513         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3455e+04 |  512 |      1 | 3.805e-02 | 0.0% |   1.2% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 876.904479046786 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.943865239493023, dt = 0.00987873043821211 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.15 us    (1.0%)
   patch tree reduce : 1312.00 ns (0.3%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 375.68 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 22.24 us   (5.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.908629504443482e-18,-8.618106228652778e-18,-4.581296279837499e-19)
    sum a = (-6.229392002232714e-18,6.695425464053883e-17,1.0335726415358625e-17)
    sum e = 2.5920010525317934
    sum de = 2.5038293920837118e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010924477409011058
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8442278953978432e-18,-8.102893356287666e-18,-4.0104638360238807e-19)
    sum a = (-1.0468188815782042e-16,-7.753953729094932e-17,1.979690825333613e-17)
    sum e = 2.5920005450578216
    sum de = -1.4704491964334654e-18
Info: CFL hydro = 0.005146230573944345 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005146230573944345 cfl multiplier : 0.46347032082445044       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2399e+04 |  512 |      1 | 4.129e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 861.2560794023709 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.9537439699312351, dt = 0.005146230573944345 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.82 us    (1.0%)
   patch tree reduce : 1293.00 ns (0.3%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 752.00 ns  (0.2%)
   LB compute        : 374.40 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.785369591223885e-18,-9.051353416777985e-18,-3.146896805639177e-20)
    sum a = (-3.7470027081099033e-19,1.0515026349633416e-17,-8.445392822575837e-19)
    sum e = 2.592000679780681
    sum de = -6.437450399132683e-20
Info: CFL hydro = 0.0071352004243456155 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0071352004243456155 cfl multiplier : 0.6423135472163003       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6350e+04 |  512 |      1 | 3.131e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 591.6276528444153 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.9588902005051794, dt = 0.0071352004243456155 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1293.00 ns (0.3%)
   LB compute        : 381.86 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5848463994226912e-18,-8.782037597132586e-18,-1.6319953201338055e-19)
    sum a = (-5.704811623097328e-17,9.57827567260594e-17,1.8363240615604238e-17)
    sum e = 2.592000823877613
    sum de = -1.6703489719854803e-18
Info: CFL hydro = 0.008466688152853416 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008466688152853416 cfl multiplier : 0.7615423648108669        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6540e+04 |  512 |      1 | 3.096e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 829.7894216561273 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.966025400929525, dt = 0.008466688152853416 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (0.8%)
   patch tree reduce : 722.00 ns  (0.2%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 441.00 ns  (0.1%)
   LB compute        : 375.57 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.52 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.2317898357447916e-18,-7.795522040388025e-18,0)
    sum a = (-9.493968111673467e-17,1.0255078036758292e-16,8.366354484201643e-18)
    sum e = 2.5920009624905695
    sum de = 1.353558649712372e-18
Info: CFL hydro = 0.009362385530994513 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009362385530994513 cfl multiplier : 0.8410282432072446        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6090e+04 |  512 |      1 | 3.182e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 957.8310107018582 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.9744920890823785, dt = 0.009362385530994513 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (0.8%)
   patch tree reduce : 551.00 ns  (0.1%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 531.00 ns  (0.1%)
   LB compute        : 387.83 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.56 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.3222261707220874e-18,-6.911463588943345e-18,1.661268778790914e-19)
    sum a = (1.1962306145640866e-16,5.1333937101105673e-17,2.818448599506418e-17)
    sum e = 2.592001086983285
    sum de = 4.577366046962239e-18
Info: CFL hydro = 0.009969910387672483 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009969910387672483 cfl multiplier : 0.8940188288048297        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6602e+04 |  512 |      1 | 3.084e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1092.9229644642235 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.983854474613373, dt = 0.009969910387672483 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.36 us    (0.8%)
   patch tree reduce : 511.00 ns  (0.1%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 521.00 ns  (0.1%)
   LB compute        : 391.89 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.42 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.248384583982549e-18,-6.6128743106408374e-18,4.815483949094367e-19)
    sum a = (1.9390739014468748e-17,1.1299555041643928e-16,7.971162792330678e-17)
    sum e = 2.5920011943363366
    sum de = 1.2061749168901237e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011604390160460002
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6353431156062036e-18,-6.314285032338329e-18,7.420821769577035e-19)
    sum a = (-1.6158949178723957e-17,2.1779453240888813e-17,5.566640898235775e-17)
    sum e = 2.592000559434836
    sum de = -4.675621868843738e-19
Info: CFL hydro = 0.0051900745040945415 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0051900745040945415 cfl multiplier : 0.4646729429349432       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2725e+04 |  512 |      1 | 4.023e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 892.0622866397694 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.9938243850010455, dt = 0.0051900745040945415 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.62 us    (0.9%)
   patch tree reduce : 1032.00 ns (0.3%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 611.00 ns  (0.2%)
   LB compute        : 391.21 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.77 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7736602077610417e-18,-6.715331415940718e-18,9.652922992181567e-19)
    sum a = (3.718900187799079e-17,8.561901188031129e-17,5.717691944906456e-17)
    sum e = 2.592000728519857
    sum de = 1.0105103060743803e-18
Info: CFL hydro = 0.00718057788930829 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00718057788930829 cfl multiplier : 0.6431152952899621         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6957e+04 |  512 |      1 | 3.019e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 618.815558673741 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.99901445950514, dt = 0.0009855404948599933 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (0.8%)
   patch tree reduce : 521.00 ns  (0.1%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 421.00 ns  (0.1%)
   LB compute        : 369.17 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.32 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4940986775856545e-18,-6.258665460889823e-18,9.56876179854238e-19)
    sum a = (-5.761016663718977e-18,-8.257457217997199e-17,1.1740998798193125e-16)
    sum e = 2.5920005588195605
    sum de = 1.1750464560785281e-18
Info: CFL hydro = 0.008508936374390753 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008508936374390753 cfl multiplier : 0.7620768635266414        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6798e+04 |  512 |      1 | 3.048e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.40161103525053 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 267                                                     [SPH][rank=0]
Info: time since start : 715.558216009 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.1495890870712197 max=0.15035900209409492 delta=0.0007699150228752116
Number of particle pairs: 130816
Distance min=0.145915 max=1.993868 mean=0.806647
---------------- t = 2, dt = 0.008508936374390753 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.37 us   (1.5%)
   patch tree reduce : 1523.00 ns (0.2%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.1%)
   LB compute        : 666.40 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.49 us    (73.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6141198580798e-18,-7.324219356008577e-18,2.117202897375381e-18)
    sum a = (-1.1353418205573006e-16,1.4051260155412137e-17,-7.992825151736937e-17)
    sum e = 2.59200103568181
    sum de = 1.0816610736437415e-18
Info: CFL hydro = 0.009391121285939453 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009391121285939453 cfl multiplier : 0.8413845756844275        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5368e+04 |  512 |      1 | 3.332e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 919.4646275931412 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.008508936374391, dt = 0.009391121285939453 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.50 us    (0.9%)
   patch tree reduce : 561.00 ns  (0.1%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 331.00 ns  (0.1%)
   LB compute        : 374.98 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.25 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.216109883090069e-18,-6.9158546077419116e-18,4.401996345562709e-19)
    sum a = (-8.627473735423053e-17,-5.901529265273098e-18,2.4133039316920345e-17)
    sum e = 2.5920011596082806
    sum de = 2.4360667563033678e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010366137861466321
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.001681798426748e-18,-6.661175517425066e-18,9.945657578752653e-19)
    sum a = (6.463579671489583e-18,-1.4692934369175958e-16,4.6275483445157303e-17)
    sum e = 2.592000557307104
    sum de = 8.91078660511524e-19
Info: CFL hydro = 0.004992205911732063 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004992205911732063 cfl multiplier : 0.4471281918948091        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2596e+04 |  512 |      1 | 4.065e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 831.7392165152514 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.0179000576603303, dt = 0.004992205911732063 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (0.8%)
   patch tree reduce : 571.00 ns  (0.1%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 361.00 ns  (0.1%)
   LB compute        : 374.61 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.62 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.6152721441529144e-18,-8.189250059326136e-18,1.2620519863545954e-18)
    sum a = (2.309090418872728e-17,8.571268694801404e-18,8.032637055510605e-18)
    sum e = 2.592000725735569
    sum de = 1.3400061225563031e-18
Info: CFL hydro = 0.007051135966554169 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007051135966554169 cfl multiplier : 0.6314187945965394        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5998e+04 |  512 |      1 | 3.200e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 561.5702370750126 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.0228922635720625, dt = 0.007051135966554169 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (0.8%)
   patch tree reduce : 592.00 ns  (0.1%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 380.00 ns  (0.1%)
   LB compute        : 392.59 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.23 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4381677192774075e-18,-7.3037279349486e-18,1.21411669780358e-18)
    sum a = (1.9737336764968917e-16,1.0725795251964598e-17,3.2692598628258907e-17)
    sum e = 2.592000897200479
    sum de = -8.046812998915853e-19
Info: CFL hydro = 0.008417825698015373 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008417825698015373 cfl multiplier : 0.7542791963976928        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6725e+04 |  512 |      1 | 3.061e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 829.184170765181 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.0299433995386167, dt = 0.008417825698015373 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (0.8%)
   patch tree reduce : 551.00 ns  (0.1%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 441.00 ns  (0.1%)
   LB compute        : 394.60 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.19 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0450624740587777e-18,-7.533524585406903e-18,1.5636143503019659e-18)
    sum a = (4.337155634637213e-17,7.461219142523845e-17,3.1591916582751624e-17)
    sum e = 2.592001041638217
    sum de = -6.572975670693371e-19
Info: CFL hydro = 0.009315251367583422 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009315251367583422 cfl multiplier : 0.8361861309317952        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7074e+04 |  512 |      1 | 2.999e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1010.5870433119102 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.038361225236632, dt = 0.009315251367583422 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (0.8%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 521.00 ns  (0.1%)
   LB compute        : 386.38 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.07 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2616860681213816e-18,-6.8046154648448984e-18,1.7852235802921084e-18)
    sum a = (-3.09127723419067e-17,9.695369507234374e-18,-1.513554906407144e-16)
    sum e = 2.5920011435819794
    sum de = 9.147955830346444e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011043614013252176
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6861512186494565e-18,-6.608483291842271e-18,8.880835520100327e-19)
    sum a = (-6.622827286584254e-17,4.318420621096663e-17,-7.095886378483129e-18)
    sum e = 2.5920005563361905
    sum de = -1.1553529400548657e-18
Info: CFL hydro = 0.004954867267647271 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004954867267647271 cfl multiplier : 0.4453953769772651        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2835e+04 |  512 |      1 | 3.989e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 840.6628197858802 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.0476764766042157, dt = 0.004954867267647271 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.52 us    (0.9%)
   patch tree reduce : 962.00 ns  (0.2%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 721.00 ns  (0.2%)
   LB compute        : 384.76 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.166235940626038e-18,-6.372100113186119e-18,1.6319953201338056e-18)
    sum a = (-4.309053114326389e-17,7.353492814665685e-18,2.880508331859488e-17)
    sum e = 2.5920007212929708
    sum de = 1.3383120566617945e-18
Info: CFL hydro = 0.007006435063047293 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007006435063047293 cfl multiplier : 0.6302635846515101        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6585e+04 |  512 |      1 | 3.087e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 577.7998718016382 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.052631343871863, dt = 0.007006435063047293 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (0.8%)
   patch tree reduce : 591.00 ns  (0.1%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 421.00 ns  (0.1%)
   LB compute        : 386.87 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3887142264200634e-18,-6.556522902725903e-18,1.9668105035244854e-18)
    sum a = (1.3053620684377875e-16,7.962380754733544e-18,1.7095699855751433e-16)
    sum e = 2.5920008782061137
    sum de = 5.421010862427522e-20
Info: CFL hydro = 0.008369896218113026 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008369896218113026 cfl multiplier : 0.7535090564343401        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6365e+04 |  512 |      1 | 3.129e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 806.1868198663046 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.0596377789349103, dt = 0.008369896218113026 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (0.8%)
   patch tree reduce : 451.00 ns  (0.1%)
   gen split merge   : 430.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 321.00 ns  (0.1%)
   LB compute        : 366.79 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.37 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.698919626819567e-19,-6.429366316684088e-18,3.7674941291698796e-18)
    sum a = (-1.0135642325437288e-16,6.449528411334171e-17,2.074902749615859e-17)
    sum e = 2.5920010013692334
    sum de = -2.202285662861181e-18
Info: CFL hydro = 0.00927691714680078 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00927691714680078 cfl multiplier : 0.8356727042895601         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6401e+04 |  512 |      1 | 3.122e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 965.2329364551234 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.0680076751530234, dt = 0.00927691714680078 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (0.8%)
   patch tree reduce : 571.00 ns  (0.1%)
   gen split merge   : 411.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 351.00 ns  (0.1%)
   LB compute        : 380.27 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.37 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5467909031684497e-18,-5.556834289585644e-18,3.2610632944019e-18)
    sum a = (6.777391148293788e-17,-3.1709010417380057e-17,-2.4472611437342806e-17)
    sum e = 2.5920010803572655
    sum de = -2.1480755542369057e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012310911677633183
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.779826286352204e-18,-6.609581046541913e-18,3.0495625556042905e-18)
    sum a = (-9.484600604903193e-18,4.8242659866915e-17,2.201364091014568e-18)
    sum e = 2.5920005546629734
    sum de = 1.395910297075087e-18
Info: CFL hydro = 0.0049423768745128025 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0049423768745128025 cfl multiplier : 0.44522423476318673      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2952e+04 |  512 |      1 | 3.953e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 844.8115267793623 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.077284592299824, dt = 0.0049423768745128025 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (0.8%)
   patch tree reduce : 550.00 ns  (0.1%)
   gen split merge   : 431.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 360.00 ns  (0.1%)
   LB compute        : 367.58 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.06 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.186727361686014e-18,-5.671000778348367e-18,3.0656629578657e-18)
    sum a = (1.4683566862405682e-17,-3.391037450839462e-17,1.6510230682609262e-17)
    sum e = 2.592000703009388
    sum de = -1.395910297075087e-18
Info: CFL hydro = 0.00699527970008768 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00699527970008768 cfl multiplier : 0.6301494898421245         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6273e+04 |  512 |      1 | 3.146e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 565.4943952507995 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.0822269691743367, dt = 0.00699527970008768 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (0.8%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 440.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 380.00 ns  (0.1%)
   LB compute        : 381.90 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 1974.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0930522939832663e-18,-6.1357169345299666e-18,3.3993803865567382e-18)
    sum a = (1.5777223277835262e-16,-7.929594481037583e-17,2.0208053980175223e-16)
    sum e = 2.5920008380805735
    sum de = -1.3891340334970526e-18
Info: CFL hydro = 0.008365975147973487 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008365975147973487 cfl multiplier : 0.753432993228083         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6705e+04 |  512 |      1 | 3.065e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 821.6643333049029 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.0892222488744245, dt = 0.008365975147973487 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (0.7%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 401.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 341.00 ns  (0.1%)
   LB compute        : 390.29 us  (97.6%)
   LB move op cnt    : 0
   LB apply          : 1854.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0104638360238807e-19,-6.762168949792091e-18,5.630749772694843e-18)
    sum a = (-3.334832410217814e-17,1.0351094981153607e-17,1.9842721216134506e-16)
    sum e = 2.5920009409125533
    sum de = -1.8905775382715984e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010146415835911431
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1504469252243688e-18,-6.463579671489583e-18,5.474136768879312e-18)
    sum a = (2.964815892791961e-17,-7.864021933645659e-17,-1.4786609436878707e-16)
    sum e = 2.592000556987935
    sum de = -6.505213034913027e-19
Info: CFL hydro = 0.004643157659228841 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004643157659228841 cfl multiplier : 0.4178109977426943        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2589e+04 |  512 |      1 | 4.067e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 740.5209851342521 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.097588224022398, dt = 0.004643157659228841 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.25 us    (0.9%)
   patch tree reduce : 491.00 ns  (0.1%)
   gen split merge   : 421.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 330.00 ns  (0.1%)
   LB compute        : 367.55 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.01 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.718788274160062e-19,-7.275918149224347e-18,3.416212625284576e-18)
    sum a = (-9.730497657622906e-18,-3.5643363260895456e-17,-5.4659402004553215e-17)
    sum e = 2.5920006743043364
    sum de = -5.55653613398821e-19
Info: CFL hydro = 0.006801044131167295 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006801044131167295 cfl multiplier : 0.6118739984951295        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6490e+04 |  512 |      1 | 3.105e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 538.3554291966847 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.102231381681627, dt = 0.006801044131167295 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 us    (0.9%)
   patch tree reduce : 571.00 ns  (0.1%)
   gen split merge   : 421.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 370.00 ns  (0.1%)
   LB compute        : 376.18 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.09 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.728193085476676e-19,-7.202734502581575e-18,3.284482061327587e-18)
    sum a = (-2.6147053272529418e-17,1.7564075194265172e-17,-8.594687461727091e-17)
    sum e = 2.592000797585509
    sum de = 4.472333961502706e-19
Info: CFL hydro = 0.008223568305049726 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008223568305049726 cfl multiplier : 0.7412493323300863        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7252e+04 |  512 |      1 | 2.968e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 824.9654328263076 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.1090324258127944, dt = 0.008223568305049726 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (0.8%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 410.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 350.00 ns  (0.1%)
   LB compute        : 361.88 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 1833.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.221139476989216e-19,-7.013920694243225e-18,2.3813958617557863e-18)
    sum a = (-5.1632526379408183e-17,7.365202198128528e-17,8.198910300682982e-17)
    sum e = 2.592000894178356
    sum de = -2.72405795836983e-18
Info: CFL hydro = 0.009163032687291588 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009163032687291588 cfl multiplier : 0.8274995548867242        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6916e+04 |  512 |      1 | 3.027e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 978.136992959591 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.117255994117844, dt = 0.009163032687291588 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (0.8%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 410.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 330.00 ns  (0.1%)
   LB compute        : 374.45 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.14 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.548565962961046e-18,-6.223537310501293e-18,4.000218125493893e-18)
    sum a = (-5.885721597598259e-17,7.41672348536504e-17,-8.126312123213353e-17)
    sum e = 2.592000959456453
    sum de = 3.049318610115481e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011723131437633717
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7066426397094325e-18,-6.314285032338329e-18,3.3240012305146838e-18)
    sum a = (-3.4580004875175986e-17,3.433191231305699e-17,1.0444770048856356e-16)
    sum e = 2.592000558340119
    sum de = -1.9312351197398048e-18
Info: CFL hydro = 0.004893158836172185 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004893158836172185 cfl multiplier : 0.44249985162890804       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2682e+04 |  512 |      1 | 4.037e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 817.047458353615 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.1264190268051357, dt = 0.004893158836172185 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.76 us    (0.8%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 411.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 521.00 ns  (0.1%)
   LB compute        : 452.25 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.10 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.905702158577771e-18,-6.5748188143865955e-18,4.595933009166053e-18)
    sum a = (-1.246785877664913e-16,5.971785566050158e-18,-4.461275099343354e-17)
    sum e = 2.592000671730038
    sum de = 8.131516293641283e-19
Info: CFL hydro = 0.006943242491694889 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006943242491694889 cfl multiplier : 0.628333234419272         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7002e+04 |  512 |      1 | 3.011e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 584.9439893573278 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.131312185641308, dt = 0.006943242491694889 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.94 us    (2.6%)
   patch tree reduce : 450.00 ns  (0.1%)
   gen split merge   : 450.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 431.00 ns  (0.1%)
   LB compute        : 370.47 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 2.02 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.410357933553154e-18,-6.6333657317008135e-18,3.8567781780740604e-18)
    sum a = (1.140493949280952e-16,4.358232524870331e-17,3.283311122981303e-17)
    sum e = 2.592000782027999
    sum de = 1.1045309632196076e-18
Info: CFL hydro = 0.008306338778378709 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008306338778378709 cfl multiplier : 0.7522221562795147        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6683e+04 |  512 |      1 | 3.069e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 814.4649834159778 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.138255428133003, dt = 0.008306338778378709 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (0.8%)
   patch tree reduce : 561.00 ns  (0.1%)
   gen split merge   : 411.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 441.00 ns  (0.1%)
   LB compute        : 395.97 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.27 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3260876771670205e-18,-5.901529265273098e-18,4.393946144432004e-18)
    sum a = (1.0503316966170573e-17,1.2182442554742324e-16,-4.376967538410881e-17)
    sum e = 2.592000875260768
    sum de = -5.21772295508649e-19
Info: CFL hydro = 0.009214368225835401 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009214368225835401 cfl multiplier : 0.8348147708530099        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6473e+04 |  512 |      1 | 3.108e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 962.0750885158611 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.1465617669113817, dt = 0.009214368225835401 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.66 us    (1.0%)
   patch tree reduce : 681.00 ns  (0.2%)
   gen split merge   : 611.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1123.00 ns (0.3%)
   LB compute        : 371.14 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 2.79 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4753823163182745e-18,-4.309053114326389e-18,3.6855284449299755e-18)
    sum a = (-1.0710573053462902e-16,-6.992843804010107e-17,-7.334757801125135e-17)
    sum e = 2.592000950065448
    sum de = 1.4840017235895342e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011904020574901891
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1164710609089533e-18,-5.304350708668082e-18,3.521597076450167e-18)
    sum a = (-1.1817109790701607e-16,9.058379046855691e-17,-1.206066496672875e-17)
    sum e = 2.5920005637446835
    sum de = -1.917682592583736e-18
Info: CFL hydro = 0.004912525424870085 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004912525424870085 cfl multiplier : 0.44493825695100336       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2736e+04 |  512 |      1 | 4.020e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 825.163916939332 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.155776135137217, dt = 0.004912525424870085 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.96 us    (1.0%)
   patch tree reduce : 1352.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 396.54 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (63.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7839059182910297e-18,-4.344181264714919e-18,3.834823084081229e-18)
    sum a = (2.1451590503929196e-17,-1.4929463915125396e-16,-1.027615492699141e-16)
    sum e = 2.5920006721632602
    sum de = 1.700842158086635e-18
Info: CFL hydro = 0.006956619317146638 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006956619317146638 cfl multiplier : 0.6299588379673356        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6980e+04 |  512 |      1 | 3.015e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 586.4940821953127 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.160688660562087, dt = 0.006956619317146638 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.99 us    (1.0%)
   patch tree reduce : 1172.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.3%)
   LB compute        : 375.75 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.122325752640375e-18,-5.799072159973218e-18,2.8775809859937774e-18)
    sum a = (-6.604092273043705e-17,-5.135735586803136e-17,8.056055822436292e-18)
    sum e = 2.592000787686995
    sum de = 4.2012834183813297e-19
Info: CFL hydro = 0.008323284876632997 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008323284876632997 cfl multiplier : 0.7533058919782238        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6607e+04 |  512 |      1 | 3.083e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 812.2893541278713 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.167645279879234, dt = 0.008323284876632997 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.99 us    (0.9%)
   patch tree reduce : 1322.00 ns (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 405.68 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.8365981438738253e-18,-5.761016663718977e-18,3.179097610161996e-18)
    sum a = (-2.306982729849416e-16,-7.191903322878446e-17,1.549151432134188e-17)
    sum e = 2.592000895715843
    sum de = -1.7753810574450135e-18
Info: CFL hydro = 0.009241639850220681 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009241639850220681 cfl multiplier : 0.8355372613188159        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6801e+04 |  512 |      1 | 3.047e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 983.2512122332989 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.1759685647558666, dt = 0.009241639850220681 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (0.8%)
   patch tree reduce : 681.00 ns  (0.2%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 601.00 ns  (0.2%)
   LB compute        : 360.86 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.43 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.6234314080305656e-18,-6.5777461602523065e-18,3.3459563245075153e-18)
    sum a = (6.641562300124804e-17,1.0429547850354659e-16,-1.192834893359862e-16)
    sum e = 2.5920009929771517
    sum de = 5.421010862427522e-20
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011103013108961975
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.467129791074775e-18,-5.6058673328363005e-18,2.754632459633921e-18)
    sum a = (4.147463622539149e-17,-8.847610144524509e-17,-5.901529265273098e-17)
    sum e = 2.592000570929714
    sum de = 8.809142651444724e-20
Info: CFL hydro = 0.004933370419025098 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004933370419025098 cfl multiplier : 0.44517908710627196       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2345e+04 |  512 |      1 | 4.148e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 802.1650819249802 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.1852102046060873, dt = 0.004933370419025098 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 us    (0.9%)
   patch tree reduce : 861.00 ns  (0.2%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 491.00 ns  (0.1%)
   LB compute        : 370.98 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.69 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.238796813549328e-18,-7.309582626680022e-18,2.7604871513653427e-18)
    sum a = (-8.585319954956816e-17,-6.07482814052318e-17,-8.653234379041308e-18)
    sum e = 2.5920006894629477
    sum de = 2.15485181781494e-18
Info: CFL hydro = 0.006989986258144599 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006989986258144599 cfl multiplier : 0.6301193914041813        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6768e+04 |  512 |      1 | 3.053e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 581.6550046203022 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.1901435750251124, dt = 0.006989986258144599 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.35 us    (0.9%)
   patch tree reduce : 1022.00 ns (0.3%)
   gen split merge   : 520.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 601.00 ns  (0.2%)
   LB compute        : 371.36 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.56 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.064308347679791e-18,-7.681355551625302e-18,2.865871602530934e-18)
    sum a = (-1.2248015102134247e-17,-4.376894354764238e-17,8.558388372992276e-17)
    sum e = 2.592000823884018
    sum de = 1.7957098481791167e-19
Info: CFL hydro = 0.008371356070242187 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008371356070242187 cfl multiplier : 0.7534129276027874        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6515e+04 |  512 |      1 | 3.100e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 811.7037868011026 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.1971335612832568, dt = 0.008371356070242187 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (0.8%)
   patch tree reduce : 551.00 ns  (0.1%)
   gen split merge   : 381.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 401.00 ns  (0.1%)
   LB compute        : 379.38 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.19 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.938432475454224e-18,-7.859923649433665e-18,3.855314505141205e-18)
    sum a = (7.84528692010511e-17,1.317598374156459e-16,-2.8576750341069436e-17)
    sum e = 2.5920009542804676
    sum de = -9.554531645028508e-19
Info: CFL hydro = 0.00928542386960449 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00928542386960449 cfl multiplier : 0.8356086184018583         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6652e+04 |  512 |      1 | 3.075e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 980.1264446082597 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.205504917353499, dt = 0.00928542386960449 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (0.8%)
   patch tree reduce : 722.00 ns  (0.2%)
   gen split merge   : 390.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 370.00 ns  (0.1%)
   LB compute        : 389.06 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.23 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.052910351076689e-18,-5.73759789679329e-18,3.097131925922092e-18)
    sum a = (1.7751425329670668e-17,-1.586035990042145e-17,3.0204354642404675e-17)
    sum e = 2.5920010707225427
    sum de = 4.404571325722362e-20
Info: CFL hydro = 0.00988805362241307 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00988805362241307 cfl multiplier : 0.8904057456012389         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6318e+04 |  512 |      1 | 3.138e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1065.3486279354881 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2147903412231034, dt = 0.00988805362241307 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 us    (0.8%)
   patch tree reduce : 561.00 ns  (0.1%)
   gen split merge   : 492.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 491.00 ns  (0.1%)
   LB compute        : 401.91 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.38 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.908006730724001e-18,-6.85877136336055e-18,3.708947211855662e-18)
    sum a = (-6.768023641523513e-17,-7.121647022101385e-17,7.099984662695124e-17)
    sum e = 2.592001171142249
    sum de = -1.3891340334970526e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010653153282847152
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.511039979060438e-18,-6.867553400957682e-18,3.855314505141205e-18)
    sum a = (-2.4636542805822614e-17,-1.2353399553299837e-17,-8.456004451339039e-17)
    sum e = 2.5920005860699615
    sum de = -4.811147140404426e-19
Info: CFL hydro = 0.00514675539551023 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00514675539551023 cfl multiplier : 0.4634685818670796         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2563e+04 |  512 |      1 | 4.076e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 873.4236050519615 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.224678394845516, dt = 0.00514675539551023 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 us    (0.7%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 401.00 ns  (0.1%)
   LB compute        : 396.58 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.24 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.445174697081944e-18,-6.855844017494839e-18,2.693158196453993e-18)
    sum a = (-7.400330348517059e-18,-8.981097116000924e-18,-1.2772010012096491e-17)
    sum e = 2.5920007418219178
    sum de = -3.4813054132151744e-19
Info: CFL hydro = 0.007132792163868456 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007132792163868456 cfl multiplier : 0.6423123879113865        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6677e+04 |  512 |      1 | 3.070e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 603.4938009355826 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.2298251502410262, dt = 0.007132792163868456 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.00 us    (0.9%)
   patch tree reduce : 1082.00 ns (0.3%)
   gen split merge   : 612.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.2%)
   LB compute        : 415.88 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.83 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.079256463868086e-18,-6.800224446046332e-18,2.7399957303053666e-18)
    sum a = (-1.1451777026660892e-16,3.295020506444146e-17,4.2036686631607975e-17)
    sum e = 2.592000900710518
    sum de = -2.7456572985248145e-18
Info: CFL hydro = 0.008458689023564012 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008458689023564012 cfl multiplier : 0.7615415919409244        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6487e+04 |  512 |      1 | 3.105e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 826.8757783116453 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.236957942404895, dt = 0.008458689023564012 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (0.8%)
   patch tree reduce : 481.00 ns  (0.1%)
   gen split merge   : 572.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 481.00 ns  (0.1%)
   LB compute        : 367.81 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.44 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.567811836582059e-18,-6.340631145129727e-18,3.246426565073346e-18)
    sum a = (6.374588357171973e-17,-8.52443116095003e-18,7.368715013167382e-17)
    sum e = 2.592001044585685
    sum de = 1.7719929256559963e-18
Info: CFL hydro = 0.009346874909778972 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009346874909778972 cfl multiplier : 0.8410277279606163        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6037e+04 |  512 |      1 | 3.193e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 953.7994730121006 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.245416631428459, dt = 0.009346874909778972 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.33 us    (1.0%)
   patch tree reduce : 1032.00 ns (0.2%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.2%)
   LB compute        : 402.43 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (73.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.254897215810738e-18,-6.636293077566524e-18,4.1480490917122915e-18)
    sum a = (-7.671988044855027e-17,4.285634347400702e-18,1.6076983494484053e-17)
    sum e = 2.5920011612396894
    sum de = -1.6263032587282567e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010103473618262181
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.9947838833691584e-18,-6.5865281978494394e-18,3.849459813409784e-18)
    sum a = (-1.0786684045971384e-16,-4.5104545098872963e-17,5.640410014051689e-17)
    sum e = 2.5920005873245375
    sum de = 4.472333961502706e-19
Info: CFL hydro = 0.004973758476651896 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004973758476651896 cfl multiplier : 0.44700924265353875       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 7.2549e+03 |  512 |      1 | 7.057e-02 | 0.0% |   0.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 476.7931364856586 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.254763506338238, dt = 0.004973758476651896 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (1.0%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 463.01 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.363995380681941e-18,-7.122232491274527e-18,4.227087430086485e-18)
    sum a = (-8.16846590367959e-17,-4.70014652198536e-17,-1.3084065081381268e-16)
    sum e = 2.5920007482401752
    sum de = 3.4897757426877174e-19
Info: CFL hydro = 0.00702926149794822 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00702926149794822 cfl multiplier : 0.6313394951023592         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5255e+04 |  512 |      1 | 3.356e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 533.5008817906966 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.25973726481489, dt = 0.00702926149794822 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.86 us    (0.9%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 405.35 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.048262476791855e-18,-7.341783431202841e-18,2.971256053696525e-18)
    sum a = (-1.0716427745194323e-16,-1.4407225412682577e-16,-1.2422484915730613e-16)
    sum e = 2.5920009126376584
    sum de = 0
Info: CFL hydro = 0.008406697588543757 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008406697588543757 cfl multiplier : 0.7542263300682395        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6528e+04 |  512 |      1 | 3.098e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 816.8712215006769 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.2667665263128383, dt = 0.008406697588543757 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.00 us    (1.0%)
   patch tree reduce : 1252.00 ns (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 375.31 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.7607052768592354e-18,-8.881567356566754e-18,1.905702158577771e-18)
    sum a = (-9.620429453072177e-17,-7.760979359172637e-17,1.7332229401700871e-16)
    sum e = 2.592001052720533
    sum de = -2.5614276324970042e-18
Info: CFL hydro = 0.009334596934274124 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009334596934274124 cfl multiplier : 0.8361508867121596        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6416e+04 |  512 |      1 | 3.119e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 970.3420368956749 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.275173223901382, dt = 0.009334596934274124 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (0.8%)
   patch tree reduce : 631.00 ns  (0.2%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 511.00 ns  (0.1%)
   LB compute        : 385.69 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.38 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.022391344980617e-18,-9.481673259037482e-18,4.868176174677163e-18)
    sum a = (-5.686076609556778e-17,7.376911581591373e-18,1.3971636347864801e-16)
    sum e = 2.5920011542983135
    sum de = -2.0057740190981832e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010007618699934823
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.594267012120403e-18,-9.057208108509407e-18,4.6164244302260294e-18)
    sum a = (3.5128150388530344e-17,9.835882108788496e-18,1.3198817039317134e-16)
    sum e = 2.592000586124164
    sum de = -1.212951180468158e-18
Info: CFL hydro = 0.004977998468978183 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004977998468978183 cfl multiplier : 0.4453836289040532        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.4659e+03 |  512 |      1 | 1.146e-01 | 0.0% |   0.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 293.11398166777354 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.284507820835656, dt = 0.004977998468978183 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (0.6%)
   patch tree reduce : 1543.00 ns (0.2%)
   gen split merge   : 1062.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.1%)
   LB compute        : 716.28 us  (97.7%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.091495359684563e-18,-9.048426070912274e-18,5.275077250010973e-18)
    sum a = (1.8735013540549516e-19,-5.2551712981241395e-17,7.634518017773928e-17)
    sum e = 2.5920007466070425
    sum de = -1.1180834903756764e-18
Info: CFL hydro = 0.007039991932702147 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007039991932702147 cfl multiplier : 0.6302557526027021        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2663e+04 |  512 |      1 | 4.043e-02 | 0.0% |   1.2% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 443.23242019106857 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2894858193046344, dt = 0.007039991932702147 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.36 us    (0.8%)
   patch tree reduce : 912.00 ns  (0.2%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 661.00 ns  (0.2%)
   LB compute        : 392.54 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.211516540178708e-18,-9.486064277836048e-18,5.6146493704334334e-18)
    sum a = (-3.28799487636644e-17,-4.625206467823162e-17,-1.847740710436696e-17)
    sum e = 2.5920008983944265
    sum de = -4.2012834183813297e-19
Info: CFL hydro = 0.008403132940512958 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008403132940512958 cfl multiplier : 0.753503835068468         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6969e+04 |  512 |      1 | 3.017e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 839.9539256946731 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.2965258112373363, dt = 0.008403132940512958 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (0.8%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 441.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 321.00 ns  (0.1%)
   LB compute        : 366.50 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 1983.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.599389867385398e-18,-9.95004859755122e-18,5.121391592061153e-18)
    sum a = (1.0896752250522113e-16,1.891065429249217e-16,3.9062503232045743e-17)
    sum e = 2.5920010151195885
    sum de = 1.6127507315721878e-18
Info: CFL hydro = 0.009304335791999227 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009304335791999227 cfl multiplier : 0.8356692233789786        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6801e+04 |  512 |      1 | 3.047e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 992.6992463629905 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.304928944177849, dt = 0.009304335791999227 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (0.8%)
   patch tree reduce : 491.00 ns  (0.1%)
   gen split merge   : 411.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 351.00 ns  (0.1%)
   LB compute        : 359.28 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 1913.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.980567603647291e-18,-7.164679006327334e-18,5.781508084778953e-18)
    sum a = (-1.4854523860963198e-16,3.732951447954491e-17,-6.489340315107838e-17)
    sum e = 2.592001086144861
    sum de = 5.55653613398821e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011897251169937416
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.220298577775841e-18,-7.776494292260904e-18,5.267758885346696e-18)
    sum a = (2.866457071704076e-17,-2.4121329933457504e-18,-1.0030257874271698e-16)
    sum e = 2.592000583385983
    sum de = -1.0842021724855044e-18
Info: CFL hydro = 0.004951183257378172 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004951183257378172 cfl multiplier : 0.44522307445965953       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1766e+04 |  512 |      1 | 4.352e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 769.7274102542699 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.3142332799698484, dt = 0.004951183257378172 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.60 us    (0.9%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 411.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 441.00 ns  (0.1%)
   LB compute        : 367.85 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 1933.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.040578193894364e-18,-7.865778341165085e-18,4.530067727187559e-18)
    sum a = (1.0046651011119678e-17,-1.2203519444975442e-16,3.4121143410725806e-17)
    sum e = 2.5920007250786625
    sum de = 7.318364664277155e-19
Info: CFL hydro = 0.007003413941645272 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007003413941645272 cfl multiplier : 0.6301487163064396        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6741e+04 |  512 |      1 | 3.058e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 582.819650668453 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.3191844632272267, dt = 0.007003413941645272 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 us    (0.8%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 401.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 340.00 ns  (0.1%)
   LB compute        : 367.65 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 1913.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.191336505978473e-18,-9.055744435576552e-18,5.2282397161596e-18)
    sum a = (-1.5198779734770794e-16,-1.2880321809127792e-17,5.6439228290905416e-18)
    sum e = 2.5920008502545313
    sum de = 5.421010862427522e-19
Info: CFL hydro = 0.008368302293114971 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008368302293114971 cfl multiplier : 0.7534324775376264        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6676e+04 |  512 |      1 | 3.070e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 821.1820243696275 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.3261878771688718, dt = 0.008368302293114971 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (0.9%)
   patch tree reduce : 901.00 ns  (0.2%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 561.00 ns  (0.1%)
   LB compute        : 378.73 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.69 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.88041507049364e-18,-8.899863268227448e-18,5.100900171001177e-18)
    sum a = (-3.0748840973426895e-17,-1.1742169736539408e-16,3.508131285467897e-17)
    sum e = 2.592000940755256
    sum de = -1.2197274440461925e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010356437673822874
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.502787453816939e-18,-9.259926809709883e-18,5.354847424851594e-18)
    sum a = (5.882794251732548e-17,-2.306748542180159e-17,-2.3418766925686896e-17)
    sum e = 2.5920005856174795
    sum de = 6.640738306473715e-19
Info: CFL hydro = 0.004639526638315033 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004639526638315033 cfl multiplier : 0.4178108258458755        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2638e+04 |  512 |      1 | 4.051e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 743.6427823434934 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.3345561794619867, dt = 0.004639526638315033 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (0.8%)
   patch tree reduce : 842.00 ns  (0.2%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 521.00 ns  (0.1%)
   LB compute        : 377.88 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.48 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.873408092689104e-18,-8.956214676142382e-18,4.929650437857091e-18)
    sum a = (6.224708248847577e-17,1.6126162905027996e-16,-4.0186604044478714e-17)
    sum e = 2.5920006938914413
    sum de = -6.2341624917916505e-19
Info: CFL hydro = 0.006793833646462093 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006793833646462093 cfl multiplier : 0.6118738838972503        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6143e+04 |  512 |      1 | 3.172e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 526.602223133007 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.339195706100302, dt = 0.006793833646462093 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (0.8%)
   patch tree reduce : 791.00 ns  (0.2%)
   gen split merge   : 421.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 372.02 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.56 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.387468678981101e-18,-7.321657928376079e-18,4.554218330579673e-18)
    sum a = (1.1135623673164118e-16,-1.2058323090036182e-16,-1.5751462634217006e-16)
    sum e = 2.592000802902092
    sum de = 2.0057740190981832e-18
Info: CFL hydro = 0.008228874185172914 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008228874185172914 cfl multiplier : 0.7412492559315002        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6794e+04 |  512 |      1 | 3.049e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 802.2482659830368 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.345989539746764, dt = 0.008228874185172914 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.26 us    (0.9%)
   patch tree reduce : 531.00 ns  (0.1%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 501.00 ns  (0.1%)
   LB compute        : 359.41 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.38 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.339478859056612e-18,-9.2709043567063e-18,2.953326060269046e-18)
    sum a = (1.7300614066351195e-16,-6.597066642965998e-17,-5.840640471266311e-17)
    sum e = 2.5920008838083826
    sum de = -1.9651164376299768e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010223432692156394
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.198966257502491e-18,-9.061599127307974e-18,3.389683553376571e-18)
    sum a = (5.586546850122609e-17,3.11001224773122e-17,-1.1793691023775921e-16)
    sum e = 2.592000587505111
    sum de = -9.75781955236954e-19
Info: CFL hydro = 0.004594099947569497 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004594099947569497 cfl multiplier : 0.41374975197716674       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2798e+04 |  512 |      1 | 4.001e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 740.4634310198865 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.354218413931937, dt = 0.004594099947569497 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.35 us    (0.8%)
   patch tree reduce : 631.00 ns  (0.2%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 396.42 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.61 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.307278054533793e-18,-8.574196040667115e-18,2.5546581451825477e-18)
    sum a = (4.5022579414633056e-17,9.002174006234042e-17,8.04200456228088e-17)
    sum e = 2.5920006789719476
    sum de = 7.589415207398531e-19
Info: CFL hydro = 0.006764909465210711 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006764909465210711 cfl multiplier : 0.6091665013181111        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6606e+04 |  512 |      1 | 3.083e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 536.4084299257196 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.3588125138795064, dt = 0.006764909465210711 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.35 us    (0.9%)
   patch tree reduce : 952.00 ns  (0.2%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 501.00 ns  (0.1%)
   LB compute        : 374.04 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.31 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.967705934111333e-18,-7.766248581730917e-18,3.5556274721390555e-18)
    sum a = (1.434048192694437e-16,8.538482421105442e-17,-9.77499331478171e-17)
    sum e = 2.5920007743767157
    sum de = -9.0801931945661e-19
Info: CFL hydro = 0.008215415458984533 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008215415458984533 cfl multiplier : 0.7394443342120741        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7120e+04 |  512 |      1 | 2.991e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 814.3226837029111 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.365577423344717, dt = 0.008215415458984533 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (0.8%)
   patch tree reduce : 591.00 ns  (0.2%)
   gen split merge   : 411.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 411.00 ns  (0.1%)
   LB compute        : 361.10 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.37 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4601228132702386e-18,-7.05837975957871e-18,2.1618449218274714e-18)
    sum a = (-4.310224052672673e-17,1.0234001146525173e-17,5.676709102786503e-17)
    sum e = 2.5920008488221558
    sum de = 2.710505431213761e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010023975953366186
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.092429520263785e-18,-7.478636850424825e-18,2.799274484086012e-18)
    sum a = (-1.2581732530825284e-17,9.390925537200445e-17,8.486961133868931e-17)
    sum e = 2.5920005897611986
    sum de = -2.6291902682773483e-18
Info: CFL hydro = 0.004594251040377452 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004594251040377452 cfl multiplier : 0.41314811140402474       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2795e+04 |  512 |      1 | 4.002e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 739.0815408899491 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.3737928388037015, dt = 0.004594251040377452 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (0.8%)
   patch tree reduce : 551.00 ns  (0.1%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 400.00 ns  (0.1%)
   LB compute        : 384.38 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.37 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0748654450695194e-18,-6.739482019332832e-18,3.153483333837026e-18)
    sum a = (4.74054389493217e-17,-7.440142252290726e-17,-1.4430644179608265e-16)
    sum e = 2.5920006699439826
    sum de = 6.2341624917916505e-19
Info: CFL hydro = 0.006769217194129066 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006769217194129066 cfl multiplier : 0.6087654076026832        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7028e+04 |  512 |      1 | 3.007e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 550.0684919097391 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.378387089844079, dt = 0.006769217194129066 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (0.8%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 430.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 321.00 ns  (0.1%)
   LB compute        : 363.20 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.11 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.644545602810023e-18,-7.616222106113234e-18,1.8193454555393007e-18)
    sum a = (2.5030270824760724e-17,-6.18255446838134e-17,-5.80785419757035e-18)
    sum e = 2.5920007582138336
    sum de = 1.4501204056993622e-18
Info: CFL hydro = 0.008216845520545675 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008216845520545675 cfl multiplier : 0.7391769384017888        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6809e+04 |  512 |      1 | 3.046e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 800.0391693832242 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.385156307038208, dt = 0.008216845520545675 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (0.8%)
   patch tree reduce : 611.00 ns  (0.2%)
   gen split merge   : 421.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 311.00 ns  (0.1%)
   LB compute        : 366.14 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.09 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.436704046344552e-18,-8.30817348512064e-18,2.227710203805966e-18)
    sum a = (1.4802417104553544e-16,-8.321858827042839e-17,-1.1639127162066387e-16)
    sum e = 2.5920008331256623
    sum de = 6.044427111606687e-18
Info: CFL hydro = 0.00917823142666279 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00917823142666279 cfl multiplier : 0.8261179589345259         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6832e+04 |  512 |      1 | 3.042e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 972.4705073494529 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.3933731525587536, dt = 0.00917823142666279 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (0.8%)
   patch tree reduce : 731.00 ns  (0.2%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 561.00 ns  (0.1%)
   LB compute        : 386.67 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.80 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7476254818293846e-18,-9.036716687449431e-18,7.274454476291492e-19)
    sum a = (3.625810589269473e-17,9.426053687588975e-18,1.1287845658181083e-16)
    sum e = 2.5920008933095016
    sum de = -7.318364664277155e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01153116016676781
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0959796398489773e-18,-8.548581764342145e-18,1.7681169028893606e-18)
    sum a = (-6.841792757339426e-17,7.725851208784106e-17,7.821868153179424e-18)
    sum e = 2.5920005943413726
    sum de = -2.439454888092385e-19
Info: CFL hydro = 0.004910732858764324 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004910732858764324 cfl multiplier : 0.442039319644842         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1958e+04 |  512 |      1 | 4.282e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 771.7014874531731 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.4025513839854162, dt = 0.004910732858764324 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (0.8%)
   patch tree reduce : 591.00 ns  (0.2%)
   gen split merge   : 401.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 511.00 ns  (0.1%)
   LB compute        : 379.28 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.31 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.903927098785175e-18,-7.723070230211681e-18,1.3421880794284302e-18)
    sum a = (-1.564959099809027e-16,-5.282102880088679e-17,2.9741833995622357e-17)
    sum e = 2.592000678678524
    sum de = -2.574980159653073e-19
Info: CFL hydro = 0.006976774369321323 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006976774369321323 cfl multiplier : 0.6280262130965614        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6356e+04 |  512 |      1 | 3.130e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 564.7548240677678 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.4074621168441808, dt = 0.006976774369321323 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (0.8%)
   patch tree reduce : 571.00 ns  (0.1%)
   gen split merge   : 391.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 320.00 ns  (0.1%)
   LB compute        : 396.29 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.32 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.048519332278122e-18,-8.592491952327808e-18,1.5661300381553112e-18)
    sum a = (5.68139285617164e-17,8.900302370107305e-17,-1.372339741845252e-16)
    sum e = 2.5920007707581982
    sum de = 2.290377089375628e-18
Info: CFL hydro = 0.008355657148239817 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008355657148239817 cfl multiplier : 0.7520174753977077        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6052e+04 |  512 |      1 | 3.190e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 787.413631612381 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.414438891213502, dt = 0.008355657148239817 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (0.8%)
   patch tree reduce : 591.00 ns  (0.2%)
   gen split merge   : 401.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 350.00 ns  (0.1%)
   LB compute        : 364.10 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.16 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9009997529194644e-18,-7.336660575937848e-18,-5.2692225582795514e-20)
    sum a = (-1.9937567222183538e-16,-1.6047124566653803e-16,-3.0046277965656286e-17)
    sum e = 2.5920008591473276
    sum de = 1.3552527156068805e-20
Info: CFL hydro = 0.009278025109301065 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009278025109301065 cfl multiplier : 0.8346783169318052        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6490e+04 |  512 |      1 | 3.105e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 968.7741521079096 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.422794548361742, dt = 0.009278025109301065 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.54 us    (0.9%)
   patch tree reduce : 842.00 ns  (0.2%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 691.00 ns  (0.2%)
   LB compute        : 387.77 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.80785419757035e-18,-9.710738073029356e-18,8.196568423990414e-20)
    sum a = (-1.5393155500253997e-16,4.459225957237356e-17,-6.313699563165187e-17)
    sum e = 2.592000942571896
    sum de = -1.2197274440461925e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011053354237769722
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.6117220245677224e-18,-8.942309783280256e-18,9.367506770274758e-20)
    sum a = (-3.2692598628258907e-17,6.512759082033526e-17,5.105291189799743e-18)
    sum e = 2.592000602149601
    sum de = -1.4907779871675686e-18
Info: CFL hydro = 0.004945011343055967 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004945011343055967 cfl multiplier : 0.4448927723106017        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2350e+04 |  512 |      1 | 4.146e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 805.6914454682604 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.432072573471043, dt = 0.004945011343055967 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.84 us    (0.9%)
   patch tree reduce : 1252.00 ns (0.3%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 671.00 ns  (0.2%)
   LB compute        : 418.56 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.275077250010973e-18,-8.615910719253494e-18,3.512815038853034e-19)
    sum a = (1.0889726620444406e-17,-3.2174458410028084e-17,-1.7095699855751435e-18)
    sum e = 2.592000697110665
    sum de = -1.0706496453294356e-18
Info: CFL hydro = 0.007001632427552621 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007001632427552621 cfl multiplier : 0.6299285148737345        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6609e+04 |  512 |      1 | 3.083e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 577.4728879988512 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.437017584814099, dt = 0.007001632427552621 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (0.8%)
   patch tree reduce : 651.00 ns  (0.2%)
   gen split merge   : 430.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 331.00 ns  (0.1%)
   LB compute        : 382.52 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.35 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.336551513190901e-18,-8.993538335930196e-18,2.8102520310824276e-19)
    sum a = (7.09588637848313e-17,1.172899668014371e-16,5.519803364384401e-17)
    sum e = 2.592000809524879
    sum de = -1.6805133673525319e-18
Info: CFL hydro = 0.00837474508095673 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00837474508095673 cfl multiplier : 0.7532856765824896         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6363e+04 |  512 |      1 | 3.129e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 805.5411099842376 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.4440192172416517, dt = 0.00837474508095673 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.41 us    (0.9%)
   patch tree reduce : 641.00 ns  (0.2%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 581.00 ns  (0.1%)
   LB compute        : 384.39 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.42 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.521285689590427e-18,-7.469854812827692e-18,9.77733519147428e-19)
    sum a = (-5.803170444185213e-17,6.707134847516727e-17,-6.426109644408484e-17)
    sum e = 2.592000922852281
    sum de = 1.1248597539537109e-18
Info: CFL hydro = 0.009295120850441515 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009295120850441515 cfl multiplier : 0.8355237843883264        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6507e+04 |  512 |      1 | 3.102e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 972.0147090273005 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.4523939623226085, dt = 0.009295120850441515 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.25 us    (0.8%)
   patch tree reduce : 561.00 ns  (0.1%)
   gen split merge   : 401.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 351.00 ns  (0.1%)
   LB compute        : 386.23 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.26 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.33069682145948e-18,-6.962692141593285e-18,-1.551493308826757e-19)
    sum a = (1.8219800668184405e-17,4.2329421218179066e-18,-5.880452375039979e-17)
    sum e = 2.5920010313358546
    sum de = 2.72405795836983e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01133281673957226
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.972096952909899e-18,-7.208589194312997e-18,-2.5760643618255584e-19)
    sum a = (7.564261716996867e-18,-2.5145900986456305e-17,-8.927233952071844e-17)
    sum e = 2.5920006097703383
    sum de = -1.6263032587282567e-19
Info: CFL hydro = 0.004958395386779155 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004958395386779155 cfl multiplier : 0.4451745947961088        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2822e+04 |  512 |      1 | 3.993e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 837.9935312305663 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.46168908317305, dt = 0.004958395386779155 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.24 us    (0.8%)
   patch tree reduce : 581.00 ns  (0.1%)
   gen split merge   : 411.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 491.00 ns  (0.1%)
   LB compute        : 383.19 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.18 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.1345646484568516e-18,-7.60524455911682e-18,-6.849989325763417e-19)
    sum a = (6.22002449546244e-17,1.1735729575634846e-16,-8.191884670605276e-17)
    sum e = 2.592000727795666
    sum de = 2.2632720350634905e-18
Info: CFL hydro = 0.007018523353577108 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007018523353577108 cfl multiplier : 0.6301163965307391        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6613e+04 |  512 |      1 | 3.082e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 579.179700774688 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.466647478559829, dt = 0.007018523353577108 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.22 us    (1.0%)
   patch tree reduce : 1132.00 ns (0.3%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 762.00 ns  (0.2%)
   LB compute        : 386.11 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.509576306127583e-18,-6.387468678981101e-18,-1.4695276245868527e-18)
    sum a = (-6.430793397793621e-17,5.971785566050158e-17,7.908517590804465e-17)
    sum e = 2.592000866564093
    sum de = -1.8092623753351855e-18
Info: CFL hydro = 0.00839386740596857 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00839386740596857 cfl multiplier : 0.7534109310204927         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6471e+04 |  512 |      1 | 3.108e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 812.8352584554596 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.473666001913406, dt = 0.00839386740596857 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (0.8%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 612.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 521.00 ns  (0.1%)
   LB compute        : 374.25 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.31 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.569275509514915e-18,-6.22426914696772e-18,-1.0245710529988016e-19)
    sum a = (1.4702301875946233e-16,-3.015166241682188e-17,-7.05021978297804e-17)
    sum e = 2.592001002402967
    sum de = -5.082197683525802e-19
Info: CFL hydro = 0.009314979720469676 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009314979720469676 cfl multiplier : 0.8356072873469952        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6581e+04 |  512 |      1 | 3.088e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 978.6146236801915 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.4820598693193747, dt = 0.009314979720469676 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 us    (0.9%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 521.00 ns  (0.1%)
   LB compute        : 366.25 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.48 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.313023683518268e-18,-6.582869015517301e-18,-1.355361135824129e-18)
    sum a = (2.3887142264200634e-18,-9.922531546413538e-17,-2.2452742790002312e-17)
    sum e = 2.592001124237775
    sum de = -2.0803129184565616e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010749489817297737
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.689919463728541e-18,-7.12442800067381e-18,-1.1709383462843449e-18)
    sum a = (9.948292190031793e-17,6.475289054952427e-17,-2.5126580503742613e-16)
    sum e = 2.592000614875266
    sum de = 3.9302328752599536e-19
Info: CFL hydro = 0.004968667699729691 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004968667699729691 cfl multiplier : 0.44520242911566504       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2281e+04 |  512 |      1 | 4.169e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 804.3716182344979 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.491374849039844, dt = 0.004968667699729691 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (0.8%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 421.00 ns  (0.1%)
   LB compute        : 379.16 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.12 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.3422971421753766e-18,-6.0672902249189755e-18,-3.4220673170159975e-18)
    sum a = (3.348883670373226e-17,1.603014596063268e-17,-4.0403227638541317e-17)
    sum e = 2.5920007579885413
    sum de = -2.507217523872729e-18
Info: CFL hydro = 0.007037069099838729 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007037069099838729 cfl multiplier : 0.6301349527437767        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3514e+04 |  512 |      1 | 3.789e-02 | 0.0% |   1.2% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 472.13870217121115 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4963435167395738, dt = 0.0036564832604262243 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (0.4%)
   patch tree reduce : 530.00 ns  (0.1%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 411.00 ns  (0.1%)
   LB compute        : 683.59 us  (98.5%)
   LB move op cnt    : 0
   LB apply          : 2.20 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.985892783025079e-18,-5.9538555726226795e-18,-3.0502943920707182e-18)
    sum a = (-1.1119230536316138e-16,-2.3489023226463956e-17,6.426109644408484e-17)
    sum e = 2.592000692205099
    sum de = -6.945670167485263e-19
Info: CFL hydro = 0.008418412896125998 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008418412896125998 cfl multiplier : 0.7534233018291845        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4632e+04 |  512 |      1 | 3.499e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 376.1873935160206 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 336                                                     [SPH][rank=0]
Info: time since start : 718.774692233 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14960772570319103 max=0.15031910222081227 delta=0.0007113765176212372
Number of particle pairs: 130816
Distance min=0.145249 max=1.993602 mean=0.806677
---------------- t = 2.5, dt = 0.008418412896125998 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.23 us   (1.7%)
   patch tree reduce : 1422.00 ns (0.2%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.1%)
   LB compute        : 587.59 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.047787495811694e-18,-6.4661410991220805e-18,-2.265765700060207e-18)
    sum a = (-1.9437576548320124e-17,4.009292897677596e-17,-2.320287516809072e-18)
    sum e = 2.59200105323168
    sum de = 1.1858461261560205e-19
Info: CFL hydro = 0.009347168315931426 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009347168315931426 cfl multiplier : 0.8356155345527897        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4837e+04 |  512 |      1 | 3.451e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 878.2381371249738 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.508418412896126, dt = 0.009347168315931426 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.52 us    (0.9%)
   patch tree reduce : 731.00 ns  (0.2%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 521.00 ns  (0.1%)
   LB compute        : 378.42 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 2.38 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.193239993514203e-18,-5.704299337570829e-18,-2.672666775394017e-18)
    sum a = (1.569057384021022e-16,1.656643572323091e-16,-7.728193085476675e-17)
    sum e = 2.5920011747395897
    sum de = 1.7618285302889447e-19
Info: CFL hydro = 0.009976314813366626 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009976314813366626 cfl multiplier : 0.8904103563685265        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5942e+04 |  512 |      1 | 3.212e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.7567783280779 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5177655812120574, dt = 0.009976314813366626 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (0.8%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 500.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 360.00 ns  (0.1%)
   LB compute        : 379.00 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.24 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.865085234691033e-18,-3.588194194895089e-18,-3.931425497649688e-18)
    sum a = (-1.1226956864174297e-16,9.941266559954087e-17,-6.313699563165187e-17)
    sum e = 2.592001263737886
    sum de = -1.7025362239811437e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.0113528759243702
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.8490393638030965e-18,-3.858516289681827e-18,-3.799694933692699e-18)
    sum a = (-5.152128723651117e-18,-5.1568124770362545e-17,-1.5101591852029194e-16)
    sum e = 2.59200061806676
    sum de = -1.0621793158568926e-18
Info: CFL hydro = 0.005196298214441056 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005196298214441056 cfl multiplier : 0.4634701187895088        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3271e+04 |  512 |      1 | 3.858e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 930.8722940287488 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.527741896025424, dt = 0.005196298214441056 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (0.8%)
   patch tree reduce : 611.00 ns  (0.2%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 330.00 ns  (0.1%)
   LB compute        : 389.63 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.23 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.566550487761998e-18,-4.7309568372219664e-18,-5.011616122096995e-18)
    sum a = (6.533835972266644e-17,-9.287882962727422e-17,5.885136128425117e-17)
    sum e = 2.592000791477423
    sum de = 1.4433441421213278e-18
Info: CFL hydro = 0.007197090663529312 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007197090663529312 cfl multiplier : 0.6423134125263391        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7298e+04 |  512 |      1 | 2.960e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 632.0023283169282 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.5329381942398648, dt = 0.007197090663529312 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 us    (0.8%)
   patch tree reduce : 852.00 ns  (0.2%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 310.00 ns  (0.1%)
   LB compute        : 381.28 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.30 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6700508163880467e-18,-5.666609759549801e-18,-3.984117723232483e-18)
    sum a = (2.51985932120391e-17,6.067802510445474e-17,4.997564861941584e-17)
    sum e = 2.592000950380794
    sum de = -9.690056916589196e-19
Info: CFL hydro = 0.008527453116265965 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008527453116265965 cfl multiplier : 0.7615422750175593        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7044e+04 |  512 |      1 | 3.004e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 862.5232741963847 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.540135284903394, dt = 0.008527453116265965 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (0.8%)
   patch tree reduce : 571.00 ns  (0.2%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 340.00 ns  (0.1%)
   LB compute        : 361.56 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 1974.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6568777599923479e-18,-4.4568840805447875e-18,-3.524524422315878e-18)
    sum a = (3.910934076589711e-17,1.0655538951187538e-17,-9.723472027545199e-17)
    sum e = 2.5920010785624212
    sum de = 1.3349239248727773e-18
Info: CFL hydro = 0.009412667656330665 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009412667656330665 cfl multiplier : 0.8410281833450396        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6791e+04 |  512 |      1 | 3.049e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1006.7575093378664 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.54866273801966, dt = 0.009412667656330665 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (0.8%)
   patch tree reduce : 691.00 ns  (0.2%)
   gen split merge   : 571.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 431.00 ns  (0.1%)
   LB compute        : 376.85 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.01 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5163651584382266e-18,-4.655943599413126e-18,-5.1199279191282975e-18)
    sum a = (3.3582511771435005e-17,-2.9226621123257244e-17,-5.995204332975846e-17)
    sum e = 2.592001164288404
    sum de = 2.0599841277224584e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011328886332691688
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.967612672745485e-19,-4.843293734818621e-18,-4.9589238965142e-18)
    sum a = (-1.3695294898141695e-16,-1.5498539951419588e-16,-1.3517312269506476e-16)
    sum e = 2.5920006154462096
    sum de = -5.421010862427522e-20
Info: CFL hydro = 0.004999483241314926 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004999483241314926 cfl multiplier : 0.4470093944483466        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2973e+04 |  512 |      1 | 3.947e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 858.6169426922203 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.5580754056759907, dt = 0.004999483241314926 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.96 us    (0.9%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 591.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 681.00 ns  (0.2%)
   LB compute        : 405.13 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.93 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7868332641567407e-18,-6.230855675165569e-18,-6.0771700172157494e-18)
    sum a = (7.828893783257129e-17,1.5034848366290987e-17,-3.7376352013396285e-17)
    sum e = 2.5920007694808227
    sum de = 1.2468324983583301e-18
Info: CFL hydro = 0.0070582452174959955 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0070582452174959955 cfl multiplier : 0.6313395962988978       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6616e+04 |  512 |      1 | 3.081e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 584.1007778181593 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.5630748889173054, dt = 0.0070582452174959955 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.46 us    (0.9%)
   patch tree reduce : 641.00 ns  (0.2%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 420.00 ns  (0.1%)
   LB compute        : 368.47 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.22 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0871976022518447e-18,-5.697346891139765e-18,-6.006913716438688e-18)
    sum a = (2.0561677360753094e-17,1.225972448559709e-16,4.222403676701347e-17)
    sum e = 2.5920009101790824
    sum de = 3.9302328752599536e-19
Info: CFL hydro = 0.008419833187798806 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008419833187798806 cfl multiplier : 0.7542263975325986        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6606e+04 |  512 |      1 | 3.083e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 824.123835573585 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.5701331341348013, dt = 0.008419833187798806 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (0.8%)
   patch tree reduce : 881.00 ns  (0.2%)
   gen split merge   : 682.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 421.00 ns  (0.1%)
   LB compute        : 398.54 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.47 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2189281662088335e-18,-4.377845742170594e-18,-5.485846152342155e-18)
    sum a = (-4.1591730060019925e-17,8.360499792470222e-17,-9.634480713227589e-17)
    sum e = 2.5920010154198057
    sum de = 1.1926223897340549e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010517389204497627
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0784155646547118e-18,-4.5029897779297334e-18,-5.992276987110134e-18)
    sum a = (-1.3252680203246215e-16,-1.6091034754639466e-16,-1.4205824017121672e-16)
    sum e = 2.592000616500684
    sum de = 1.2197274440461925e-19
Info: CFL hydro = 0.004659711433847634 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004659711433847634 cfl multiplier : 0.41807546584419947       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2377e+04 |  512 |      1 | 4.137e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 732.7284580062201 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.5785529673226, dt = 0.004659711433847634 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 711.00 ns  (0.2%)
   LB compute        : 378.25 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.12347803871349e-18,-6.0478965585586405e-18,-6.741677528732115e-18)
    sum a = (-3.0210209334136094e-17,7.751611852402362e-18,1.2646134139870923e-18)
    sum e = 2.592000737867072
    sum de = 1.0842021724855044e-18
Info: CFL hydro = 0.0068158492461145 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.0068158492461145 cfl multiplier : 0.6120503105627996          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7053e+04 |  512 |      1 | 3.002e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 558.7316659182413 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.5832126787564476, dt = 0.0068158492461145 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (0.7%)
   patch tree reduce : 532.00 ns  (0.1%)
   gen split merge   : 622.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 430.00 ns  (0.1%)
   LB compute        : 383.78 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.54 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.1117686552506463e-18,-5.8678647878174226e-18,-6.478216400818137e-18)
    sum a = (-4.4940613730393155e-17,-5.761016663718977e-18,1.7376725058859676e-17)
    sum e = 2.592000862042265
    sum de = -1.5178830414797062e-18
Info: CFL hydro = 0.008247409669969228 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008247409669969228 cfl multiplier : 0.7413668737085329        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6788e+04 |  512 |      1 | 3.050e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 804.528052002097 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.590028528002562, dt = 0.008247409669969228 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (0.8%)
   patch tree reduce : 571.00 ns  (0.1%)
   gen split merge   : 591.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 361.00 ns  (0.1%)
   LB compute        : 383.20 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.56 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.5918533772272274e-18,-5.983494949513002e-18,-6.211827927038449e-18)
    sum a = (3.025704686798747e-17,6.568964122655174e-17,-3.981190377366772e-17)
    sum e = 2.592000954899564
    sum de = 5.963111948670274e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010739402578428661
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.2083710688191046e-18,-5.540002050857806e-18,-6.6128743106408374e-18)
    sum a = (-5.79146106072237e-17,3.4929090869662004e-17,1.0304257447302233e-17)
    sum e = 2.5920006176635484
    sum de = 2.1277467635028025e-18
Info: CFL hydro = 0.004599922502841078 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004599922502841078 cfl multiplier : 0.41378895790284426       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2911e+04 |  512 |      1 | 3.966e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 748.6959033014829 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.5982759376725313, dt = 0.004599922502841078 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (0.8%)
   patch tree reduce : 551.00 ns  (0.1%)
   gen split merge   : 601.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 391.00 ns  (0.1%)
   LB compute        : 396.97 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.54 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.6943104825271076e-18,-5.799072159973218e-18,-6.387468678981101e-18)
    sum a = (5.095923683029469e-17,-1.4381464769064322e-16,6.234075755617851e-17)
    sum e = 2.5920007217314156
    sum de = 1.4365678785432934e-18
Info: CFL hydro = 0.006769516051266786 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006769516051266786 cfl multiplier : 0.6091926386018961        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6644e+04 |  512 |      1 | 3.076e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 538.3046456515151 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6028758601753723, dt = 0.006769516051266786 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (0.8%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 611.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 331.00 ns  (0.1%)
   LB compute        : 377.17 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.52 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.392793858358889e-18,-7.16321533339448e-18,-5.866401114884567e-18)
    sum a = (-7.269185253733212e-17,6.830083373876583e-17,1.0772632785815972e-16)
    sum e = 2.59200082921283
    sum de = 8.131516293641283e-19
Info: CFL hydro = 0.008212619816667046 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008212619816667046 cfl multiplier : 0.7394617590679307        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6612e+04 |  512 |      1 | 3.082e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 790.7063809446913 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.609645376226639, dt = 0.008212619816667046 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.42 us    (0.9%)
   patch tree reduce : 470.00 ns  (0.1%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 321.00 ns  (0.1%)
   LB compute        : 361.09 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.37 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.475911828671908e-18,-5.9117749758030856e-18,-4.713026843794488e-18)
    sum a = (1.0667248334650381e-16,7.304313404121742e-17,-7.00689506416552e-17)
    sum e = 2.5920009097624375
    sum de = 2.5478751053409354e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010763516740426377
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.3196102117161173e-18,-5.8356639832946034e-18,-5.512192265133553e-18)
    sum a = (-3.309071766599558e-17,-2.71657696337968e-18,-3.3535674237583636e-17)
    sum e = 2.592000619294146
    sum de = -1.1248597539537109e-18
Info: CFL hydro = 0.0045880249982694805 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0045880249982694805 cfl multiplier : 0.4131539196893102       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2886e+04 |  512 |      1 | 3.973e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 744.1133062280547 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6178579960433064, dt = 0.0045880249982694805 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (0.8%)
   patch tree reduce : 671.00 ns  (0.2%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 460.00 ns  (0.1%)
   LB compute        : 362.21 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.67 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.350035956446341e-18,-5.999595351774412e-18,-5.592694276440602e-18)
    sum a = (2.4133039316920345e-17,8.710610358009241e-17,-5.531512747847245e-17)
    sum e = 2.5920007091316783
    sum de = -1.9244588561617704e-18
Info: CFL hydro = 0.006760074777963527 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006760074777963527 cfl multiplier : 0.6087692797928734        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6955e+04 |  512 |      1 | 3.020e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 546.9541054455901 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6224460210415756, dt = 0.006760074777963527 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (0.8%)
   patch tree reduce : 601.00 ns  (0.2%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 350.00 ns  (0.1%)
   LB compute        : 368.11 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.56 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.987045069098194e-18,-5.494628189939288e-18,-5.828345618630326e-18)
    sum a = (-1.192015236517463e-17,-4.9682914032844746e-17,-9.40029304397072e-17)
    sum e = 2.592000803422942
    sum de = 1.2061749168901237e-18
Info: CFL hydro = 0.0082096570426035 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.0082096570426035 cfl multiplier : 0.7391795198619157          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6856e+04 |  512 |      1 | 3.038e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 801.1746085590844 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6292060958195393, dt = 0.0082096570426035 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (0.8%)
   patch tree reduce : 531.00 ns  (0.1%)
   gen split merge   : 411.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 300.00 ns  (0.1%)
   LB compute        : 381.29 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.42 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.446638370014799e-18,-6.267447498486956e-18,-6.854014426328769e-18)
    sum a = (1.4997378339209887e-16,1.8020741149316065e-17,1.9203388879063255e-17)
    sum e = 2.5920008771022
    sum de = -8.538092108323347e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010468918551373078
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.545015843375854e-18,-5.854691731421724e-18,-6.27074076258588e-18)
    sum a = (-6.5572547391923305e-18,6.131618650317972e-17,-2.2763041451767662e-17)
    sum e = 2.5920006213280806
    sum de = 2.72405795836983e-18
Info: CFL hydro = 0.004591080258639634 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004591080258639634 cfl multiplier : 0.41305983995397194       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2800e+04 |  512 |      1 | 4.000e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 738.8485014899107 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6374157528621427, dt = 0.004591080258639634 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (0.8%)
   patch tree reduce : 511.00 ns  (0.1%)
   gen split merge   : 461.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 411.00 ns  (0.1%)
   LB compute        : 381.71 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.27 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.355890648177763e-18,-5.313132746265215e-18,-6.4988907809947206e-18)
    sum a = (-1.3467840124375964e-16,-1.6328149769762047e-16,-1.4051260155412138e-19)
    sum e = 2.5920007005523145
    sum de = 5.421010862427522e-19
Info: CFL hydro = 0.00676754570928739 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00676754570928739 cfl multiplier : 0.6087065599693147         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6762e+04 |  512 |      1 | 3.055e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 541.0884053025148 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6420068331207824, dt = 0.00676754570928739 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.15 us    (1.1%)
   patch tree reduce : 1272.00 ns (0.3%)
   gen split merge   : 682.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 671.00 ns  (0.2%)
   LB compute        : 363.41 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.342406204922323e-18,-7.085640667953141e-18,-6.579392792301769e-18)
    sum a = (-7.744586222324657e-17,-4.1509764375780024e-18,-8.243405957841787e-18)
    sum e = 2.5920007876426783
    sum de = -2.0057740190981832e-18
Info: CFL hydro = 0.008211417290026703 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008211417290026703 cfl multiplier : 0.7391377066462098        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6553e+04 |  512 |      1 | 3.093e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 787.6598066324757 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.64877437883007, dt = 0.008211417290026703 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.46 us    (0.9%)
   patch tree reduce : 1072.00 ns (0.3%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 357.99 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.50 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.030332483364375e-18,-6.6509298068950785e-18,-6.5707937138212435e-18)
    sum a = (6.878970049833954e-17,-1.0245710529988017e-17,1.742356259271105e-17)
    sum e = 2.5920008605144518
    sum de = -5.692061405548898e-19
Info: CFL hydro = 0.009171816229534637 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009171816229534637 cfl multiplier : 0.8260918044308067        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6763e+04 |  512 |      1 | 3.054e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 967.8452999568849 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6569857961200967, dt = 0.009171816229534637 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.35 us    (0.9%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 692.00 ns  (0.2%)
   LB compute        : 368.10 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.75 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.900376979199983e-18,-6.6216563482379696e-18,-6.381613987249679e-18)
    sum a = (-4.1152628180163295e-17,-1.7482475428258482e-17,-7.77503061932805e-18)
    sum e = 2.592000917358898
    sum de = -2.574980159653073e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011855477582183586
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.242876445488154e-18,-6.617265329439403e-18,-6.500903331277397e-18)
    sum a = (-4.758107970126435e-17,-4.3832979238454804e-17,-9.025592773159729e-17)
    sum e = 2.592000625006879
    sum de = -2.4665599424045226e-18
Info: CFL hydro = 0.004907299509762112 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004907299509762112 cfl multiplier : 0.44203060147693557       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2860e+04 |  512 |      1 | 3.981e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 829.3069667261061 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.666157612349631, dt = 0.004907299509762112 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.26 us    (0.8%)
   patch tree reduce : 460.00 ns  (0.1%)
   gen split merge   : 592.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 581.00 ns  (0.1%)
   LB compute        : 383.20 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.45 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.6527048666876745e-18,-6.948055412264731e-18,-7.240789998835816e-18)
    sum a = (-2.713649617513969e-17,4.931260478083233e-17,5.292641325205239e-18)
    sum e = 2.592000707598747
    sum de = 2.710505431213761e-19
Info: CFL hydro = 0.006969661547468955 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006969661547468955 cfl multiplier : 0.6280204009846236        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6524e+04 |  512 |      1 | 3.099e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 570.135823705123 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.671064911859393, dt = 0.006969661547468955 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (0.8%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 411.00 ns  (0.1%)
   LB compute        : 366.11 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.26 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.6263587538962765e-18,-6.529444953468078e-18,-6.8221795400391635e-18)
    sum a = (5.37929076283028e-17,-3.2054437229533936e-17,1.0604017663951026e-16)
    sum e = 2.5920007954340605
    sum de = -9.486769009248164e-19
Info: CFL hydro = 0.008338375142498721 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008338375142498721 cfl multiplier : 0.7520136006564156        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6457e+04 |  512 |      1 | 3.111e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 806.4865590099545 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6780345734068622, dt = 0.008338375142498721 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 us    (0.7%)
   patch tree reduce : 561.00 ns  (0.1%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 421.00 ns  (0.1%)
   LB compute        : 403.00 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.44 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.853539445348609e-18,-7.167606352193045e-18,-5.619040389232e-18)
    sum a = (3.174413856776859e-17,-6.106443475872858e-18,-2.941397125866274e-17)
    sum e = 2.592000876793751
    sum de = -2.927345865710862e-18
Info: CFL hydro = 0.009248684915245992 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009248684915245992 cfl multiplier : 0.8346757337709437        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6624e+04 |  512 |      1 | 3.080e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 974.6485979860088 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.686372948549361, dt = 0.009248684915245992 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 us    (0.7%)
   patch tree reduce : 481.00 ns  (0.1%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 311.00 ns  (0.1%)
   LB compute        : 389.42 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.21 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.6574072723459815e-18,-7.015384367176081e-18,-6.457724979758161e-18)
    sum a = (9.512703125214016e-17,-2.004060979665656e-17,-7.97174826150382e-17)
    sum e = 2.592000949966874
    sum de = -3.984442983884229e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011112987590467863
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.411510219626269e-18,-7.110523107811684e-18,-6.794369754314911e-18)
    sum a = (-9.739865164393179e-17,-7.759222951653211e-17,-6.735237367827551e-17)
    sum e = 2.5920006312680277
    sum de = -2.6291902682773483e-18
Info: CFL hydro = 0.004929465447922404 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004929465447922404 cfl multiplier : 0.4448919112569813        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2812e+04 |  512 |      1 | 3.996e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 833.160814365734 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.6956216334646066, dt = 0.004929465447922404 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.00 us    (1.0%)
   patch tree reduce : 1062.00 ns (0.3%)
   gen split merge   : 632.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 701.00 ns  (0.2%)
   LB compute        : 371.94 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.869328460750278e-18,-7.695992280953857e-18,-7.002211310780382e-18)
    sum a = (2.5737224851329897e-17,-1.9884874996600744e-16,1.5456386170953351e-18)
    sum e = 2.592000720305683
    sum de = 4.2012834183813297e-19
Info: CFL hydro = 0.006979742702019499 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006979742702019499 cfl multiplier : 0.6299279408379875        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6588e+04 |  512 |      1 | 3.087e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 574.9533929628886 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.700551098912529, dt = 0.006979742702019499 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.36 us    (0.9%)
   patch tree reduce : 922.00 ns  (0.2%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 362.85 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.65 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.213602986831045e-18,-9.572420980874518e-18,-7.025630077706068e-18)
    sum a = (2.299722912102453e-17,-5.1228552649940085e-17,-5.306692585360651e-17)
    sum e = 2.592000822074654
    sum de = -6.640738306473715e-19
Info: CFL hydro = 0.00834883281628817 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00834883281628817 cfl multiplier : 0.7532852938919916         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6475e+04 |  512 |      1 | 3.108e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 808.524550708862 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.7075308416145485, dt = 0.00834883281628817 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (0.8%)
   patch tree reduce : 551.00 ns  (0.1%)
   gen split merge   : 401.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 340.00 ns  (0.1%)
   LB compute        : 358.93 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.08 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.0525989642169474e-18,-9.44069041691753e-18,-7.590607829788265e-18)
    sum a = (4.7633771926847145e-17,-3.348883670373226e-18,-3.7657377216504526e-17)
    sum e = 2.5920009215604316
    sum de = -7.182839392716467e-19
Info: CFL hydro = 0.009266799557719 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 0.009266799557719 cfl multiplier : 0.8355235292613278           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6610e+04 |  512 |      1 | 3.082e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 975.0564170938052 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.7158796744308367, dt = 0.009266799557719 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (0.8%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 430.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 320.00 ns  (0.1%)
   LB compute        : 354.21 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.15 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.423219603089112e-18,-9.212357439392082e-18,-7.722338393745254e-18)
    sum a = (-1.992937065375955e-17,-3.0889353574981015e-17,-1.3418953448418591e-17)
    sum e = 2.5920010134625464
    sum de = 2.6698478497455547e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011559882187733727
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.868176174677163e-18,-9.284077413101999e-18,-7.704774318550988e-18)
    sum a = (-3.7470027081099033e-19,5.4963845974587144e-17,-6.278571412776657e-17)
    sum e = 2.5920006372539257
    sum de = -1.4907779871675686e-18
Info: CFL hydro = 0.004944672156413756 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004944672156413756 cfl multiplier : 0.445174509753776         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2748e+04 |  512 |      1 | 4.016e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 830.5994837457149 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.7251464739885556, dt = 0.004944672156413756 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (0.7%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 431.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 401.00 ns  (0.1%)
   LB compute        : 415.42 us  (97.6%)
   LB move op cnt    : 0
   LB apply          : 2.40 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.915013708528537e-18,-8.58883276999567e-18,-8.296098183424583e-18)
    sum a = (-1.793877546507616e-17,-2.0373156287001314e-16,-3.1310891379643377e-17)
    sum e = 2.5920007427231164
    sum de = 4.2012834183813297e-19
Info: CFL hydro = 0.007004510822447963 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007004510822447963 cfl multiplier : 0.6301163398358507        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6549e+04 |  512 |      1 | 3.094e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 575.3732073090081 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.7300911461449693, dt = 0.007004510822447963 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (0.8%)
   patch tree reduce : 551.00 ns  (0.1%)
   gen split merge   : 421.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 732.00 ns  (0.2%)
   LB compute        : 371.43 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.23 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.9457508401185015e-18,-1.0826788684331623e-17,-8.372209175933065e-18)
    sum a = (1.667416205108907e-17,2.3489023226463956e-17,-6.299648303009775e-18)
    sum e = 2.592000863638215
    sum de = 3.3881317890172014e-19
Info: CFL hydro = 0.00838029755975338 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00838029755975338 cfl multiplier : 0.7534108932239004         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6943e+04 |  512 |      1 | 3.022e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 834.4629316226608 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.7370956569674174, dt = 0.00838029755975338 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (0.7%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 431.00 ns  (0.1%)
   LB compute        : 422.37 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 2.60 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.6544799264802705e-18,-9.733425003488617e-18,-8.325371642081691e-18)
    sum a = (-4.065497938299245e-17,-1.6720999584940444e-16,2.784491387464172e-17)
    sum e = 2.5920009794689256
    sum de = 6.776263578034403e-20
Info: CFL hydro = 0.009300039403613396 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009300039403613396 cfl multiplier : 0.8356072621492668        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6887e+04 |  512 |      1 | 3.032e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 995.0779303296083 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.745475954527171, dt = 0.009300039403613396 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (0.9%)
   patch tree reduce : 591.00 ns  (0.2%)
   gen split merge   : 411.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 401.00 ns  (0.1%)
   LB compute        : 355.26 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.26 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.1696927988453825e-18,-1.2223132662275704e-17,-7.997508905122074e-18)
    sum a = (7.177852062723033e-17,1.2966971246752834e-16,5.302008831975513e-17)
    sum e = 2.592001080756637
    sum de = 2.778268066994105e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011435827271539462
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.666189309943114e-18,-1.0795319716275231e-17,-7.927252604345014e-18)
    sum a = (-1.2126237514120676e-16,5.037376765715251e-17,1.0503316966170573e-17)
    sum e = 2.5920006413623335
    sum de = -1.6940658945086007e-18
Info: CFL hydro = 0.004961295354209408 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004961295354209408 cfl multiplier : 0.44520242071642224       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2915e+04 |  512 |      1 | 3.964e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 844.542651897295 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.7547759939307843, dt = 0.004961295354209408 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.71 us    (0.9%)
   patch tree reduce : 1082.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 405.24 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.241101385695558e-18,-1.0804101753872364e-17,-7.962380754733544e-18)
    sum a = (1.6393136847980826e-18,-1.711911862267712e-17,-2.5479618415147344e-17)
    sum e = 2.5920007648564383
    sum de = -3.6591823321385775e-18
Info: CFL hydro = 0.0070270930310955765 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0070270930310955765 cfl multiplier : 0.6301349471442815       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6798e+04 |  512 |      1 | 3.048e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 585.9964732968884 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.7597372892849936, dt = 0.0070270930310955765 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (0.8%)
   patch tree reduce : 511.00 ns  (0.1%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 331.00 ns  (0.1%)
   LB compute        : 385.28 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.75662564492041e-18,-1.12249077220683e-17,-8.170222311199016e-18)
    sum a = (-7.892124453956483e-17,-8.957678349075238e-17,6.819544928760024e-17)
    sum e = 2.5920008995782773
    sum de = -1.4907779871675686e-18
Info: CFL hydro = 0.008412180343635542 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008412180343635542 cfl multiplier : 0.7534232980961878        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6905e+04 |  512 |      1 | 3.029e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 835.2695506440614 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.7667643823160892, dt = 0.008412180343635542 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.32 us    (0.9%)
   patch tree reduce : 591.00 ns  (0.2%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 360.40 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.64 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.6567844986265e-18,-1.2021145797541655e-17,-7.221762250708696e-18)
    sum a = (-1.6861512186494565e-18,-6.447186534641603e-17,-1.7533045328088636e-16)
    sum e = 2.5920010220289504
    sum de = 3.7947076036992655e-19
Info: CFL hydro = 0.009335190054677521 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009335190054677521 cfl multiplier : 0.8356155320641253        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6656e+04 |  512 |      1 | 3.074e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 985.1891102126741 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.7751765626597247, dt = 0.009335190054677521 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (0.8%)
   patch tree reduce : 741.00 ns  (0.2%)
   gen split merge   : 592.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 491.00 ns  (0.1%)
   LB compute        : 388.83 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.75 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 20.56 us   (94.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.366245421454697e-18,-1.2711450544499597e-17,-9.958830635148352e-18)
    sum a = (1.3606303583824087e-16,-2.7399957303053668e-17,4.204693234213797e-17)
    sum e = 2.5920011197865684
    sum de = -5.285485590866834e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010805906201719107
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.81261113460213e-18,-1.2491533686338069e-17,-8.93425958214955e-18)
    sum a = (9.020909019774593e-17,-8.992806499463768e-18,8.780939842432944e-17)
    sum e = 2.592000642856388
    sum de = -1.6466320494623599e-18
Info: CFL hydro = 0.004978946825317236 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004978946825317236 cfl multiplier : 0.4452051773547085        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1659e+04 |  512 |      1 | 4.391e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 765.2896886051941 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.784511752714402, dt = 0.004978946825317236 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.60 us    (0.9%)
   patch tree reduce : 1022.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 601.00 ns  (0.2%)
   LB compute        : 379.72 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.571562498472501e-18,-1.239017433573783e-17,-8.260970033036053e-18)
    sum a = (-2.9320296190959995e-16,9.315985483038246e-17,-2.4156458083846033e-17)
    sum e = 2.592000777259039
    sum de = -6.335806445462167e-19
Info: CFL hydro = 0.007049801352867754 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007049801352867754 cfl multiplier : 0.6301367849031391        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6773e+04 |  512 |      1 | 3.053e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 587.17576953698 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 2.7894906995397193, dt = 0.007049801352867754 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (0.8%)
   patch tree reduce : 751.00 ns  (0.2%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 380.57 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.33 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (72.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.561022984271416e-18,-1.1384813989982757e-17,-8.741054755012634e-18)
    sum a = (-3.114696001116357e-17,3.6767464073328425e-18,-1.1070051125772196e-16)
    sum e = 2.592000914389112
    sum de = 1.9481757786848908e-19
Info: CFL hydro = 0.0084327496054546 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.0084327496054546 cfl multiplier : 0.7534245232687594          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6712e+04 |  512 |      1 | 3.064e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 828.4087334472763 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.796540500892587, dt = 0.0084327496054546 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (0.8%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 321.00 ns  (0.1%)
   LB compute        : 381.10 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.60 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.987263194592087e-18,-1.1825013624539027e-17,-9.976394710342618e-18)
    sum a = (8.52443116095003e-18,3.177926671815712e-17,6.017452161555247e-17)
    sum e = 2.5920010304457057
    sum de = 1.1310007428213045e-18
Info: CFL hydro = 0.009360120396316738 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009360120396316738 cfl multiplier : 0.8356163488458396        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6801e+04 |  512 |      1 | 3.047e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 996.1658930414097 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.804973250498042, dt = 0.009360120396316738 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (0.9%)
   patch tree reduce : 751.00 ns  (0.2%)
   gen split merge   : 550.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 310.00 ns  (0.1%)
   LB compute        : 357.18 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.46 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.603780886183963e-18,-1.1423967240936638e-17,-8.606396845189934e-18)
    sum a = (1.0126274818667014e-16,5.798486690800076e-17,3.59243884640037e-17)
    sum e = 2.5920011145494812
    sum de = 2.371692252312041e-19
Info: CFL hydro = 0.009976353582242229 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009976353582242229 cfl multiplier : 0.8904108992305598        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6770e+04 |  512 |      1 | 3.053e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1103.674334927845 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.8143333708943588, dt = 0.009976353582242229 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (0.8%)
   patch tree reduce : 521.00 ns  (0.1%)
   gen split merge   : 441.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 311.00 ns  (0.1%)
   LB compute        : 358.20 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.17 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.296720957144064e-18,-1.0678957718113224e-17,-8.448320168441547e-18)
    sum a = (-1.2365108936762681e-17,-4.03973729468099e-17,2.9203202356331556e-17)
    sum e = 2.5920011663490685
    sum de = 3.3406979439709605e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011171448809434477
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.732895491134983e-18,-1.1223444049135445e-17,-8.407337326321595e-18)
    sum a = (-1.0929538524218074e-16,-6.304332056394912e-17,-2.149842803778057e-17)
    sum e = 2.592000641952765
    sum de = 4.404571325722362e-19
Info: CFL hydro = 0.005187120377093072 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005187120377093072 cfl multiplier : 0.46347029974352          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3601e+04 |  512 |      1 | 3.764e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 954.074845001061 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.824309724476601, dt = 0.005187120377093072 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (0.9%)
   patch tree reduce : 591.00 ns  (0.2%)
   gen split merge   : 391.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 331.00 ns  (0.1%)
   LB compute        : 348.54 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.05 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.802840405052303e-18,-1.1719629173373436e-17,-8.855221243775357e-18)
    sum a = (-8.735200063281212e-18,2.707209456609405e-17,3.845361529197788e-17)
    sum e = 2.59200078280029
    sum de = -8.876905287225068e-19
Info: CFL hydro = 0.007184722514269742 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007184722514269742 cfl multiplier : 0.6423135331623467        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7495e+04 |  512 |      1 | 2.927e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 638.0737243344057 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.829496844853694, dt = 0.007184722514269742 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.24 us    (0.9%)
   patch tree reduce : 561.00 ns  (0.2%)
   gen split merge   : 401.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 491.00 ns  (0.1%)
   LB compute        : 353.22 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.16 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.666718822296747e-18,-1.092046375203437e-17,-8.35757244660451e-18)
    sum a = (-4.814898479921226e-17,8.369867299240497e-17,6.723527984364707e-17)
    sum e = 2.5920009037280076
    sum de = 8.199278929421627e-19
Info: CFL hydro = 0.008513548543531322 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008513548543531322 cfl multiplier : 0.7615423554415646        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7649e+04 |  512 |      1 | 2.901e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 891.573469455417 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.8366815673679637, dt = 0.008513548543531322 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.82 us    (1.0%)
   patch tree reduce : 1122.00 ns (0.3%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 601.00 ns  (0.2%)
   LB compute        : 381.45 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 2.75 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.174613329997581e-18,-1.0029086935925413e-17,-7.836504882507977e-18)
    sum a = (5.1708637371916666e-17,-2.709551333301974e-17,-3.4144562177651494e-17)
    sum e = 2.5920009966648143
    sum de = -2.2836008257975937e-18
Info: CFL hydro = 0.00939857533715794 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00939857533715794 cfl multiplier : 0.841028236961043          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7784e+04 |  512 |      1 | 2.879e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1064.5632818978577 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.845195115911495, dt = 0.00939857533715794 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.95 us    (1.0%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 682.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 382.69 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.33300139360571e-18,-1.0842889086593032e-17,-8.45710220603868e-18)
    sum a = (-1.147519579358658e-17,4.166198636079699e-17,-6.421425891023347e-17)
    sum e = 2.592001056210751
    sum de = 1.3552527156068805e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01198872283093425
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.536451931272614e-18,-1.0403787206736403e-17,-8.550777273741428e-18)
    sum a = (-5.960076182587315e-17,-1.5554744992041236e-16,5.2458037913538644e-17)
    sum e = 2.59200064170062
    sum de = 3.577867169202165e-18
Info: CFL hydro = 0.004996061895432999 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004996061895432999 cfl multiplier : 0.44700941232034763       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3494e+04 |  512 |      1 | 3.794e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 891.7481895352452 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.854593691248653, dt = 0.004996061895432999 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 us    (0.9%)
   patch tree reduce : 1313.00 ns (0.3%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 362.84 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 2.90 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.048737457772014e-18,-1.2359254245031259e-17,-7.816013461448002e-18)
    sum a = (6.688399833976177e-17,-5.1287099567254304e-18,1.1461144533431167e-16)
    sum e = 2.59200075813889
    sum de = 2.6156377411212794e-18
Info: CFL hydro = 0.007056893820603579 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007056893820603579 cfl multiplier : 0.631339608213565         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7401e+04 |  512 |      1 | 2.942e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 611.2678244241387 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.859589753144086, dt = 0.007056893820603579 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 19.30 us   (4.7%)
   patch tree reduce : 460.00 ns  (0.1%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 301.00 ns  (0.1%)
   LB compute        : 385.90 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 1884.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.50864214554836e-18,-1.1911370327577497e-17,-6.765096295657802e-18)
    sum a = (7.772688742635481e-17,-3.6088319832483506e-17,-6.571305999347743e-17)
    sum e = 2.592000864465362
    sum de = 2.3310346708438345e-18
Info: CFL hydro = 0.008418430980225614 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008418430980225614 cfl multiplier : 0.75422640547571          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7510e+04 |  512 |      1 | 2.924e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 868.8408473303458 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.8666466469646896, dt = 0.008418430980225614 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (0.8%)
   patch tree reduce : 451.00 ns  (0.1%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 411.00 ns  (0.1%)
   LB compute        : 398.13 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 2.11 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.75631425806067e-18,-1.230802569238132e-17,-8.01507298031634e-18)
    sum a = (-1.3560636988318998e-16,4.825436925037785e-17,4.0467629247586955e-17)
    sum e = 2.592000946217216
    sum de = 1.81603863891322e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01028887366459603
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.573043754594e-18,-1.1914297673443208e-17,-7.378375254524228e-18)
    sum a = (7.636859894466496e-17,8.283217861615455e-17,-7.643885524544203e-17)
    sum e = 2.5920006437534013
    sum de = 1.5720931501039814e-18
Info: CFL hydro = 0.004659584412750566 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004659584412750566 cfl multiplier : 0.4180754684919033        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3270e+04 |  512 |      1 | 3.858e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 785.4742579209351 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.875065077944915, dt = 0.004659584412750566 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.69 us    (0.9%)
   patch tree reduce : 691.00 ns  (0.2%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 611.00 ns  (0.2%)
   LB compute        : 359.84 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 19.01 us   (4.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.264520152621245e-18,-1.1558625150759338e-17,-8.366354484201643e-18)
    sum a = (-3.921472521706271e-17,1.2587587222556706e-17,-5.152128723651117e-18)
    sum e = 2.5920007357034556
    sum de = -1.111307226797642e-18
Info: CFL hydro = 0.006816168463497925 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006816168463497925 cfl multiplier : 0.6120503123279355        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6778e+04 |  512 |      1 | 3.052e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 549.7040337377856 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.8797246623576656, dt = 0.006816168463497925 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.05 us    (1.0%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 672.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 405.83 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.6450751151636566e-18,-1.1603999011677857e-17,-8.253651668371775e-18)
    sum a = (-2.727115408496239e-17,-2.6650556761431687e-17,7.395646595131922e-17)
    sum e = 2.5920008340334295
    sum de = -7.182839392716467e-19
Info: CFL hydro = 0.008248579824914582 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008248579824914582 cfl multiplier : 0.7413668748852903        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7424e+04 |  512 |      1 | 2.938e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 835.0877118408924 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.8865408308211635, dt = 0.008248579824914582 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.72 us    (0.9%)
   patch tree reduce : 1062.00 ns (0.3%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 510.00 ns  (0.1%)
   LB compute        : 380.68 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.91 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.090031686751708e-18,-1.1791349147083352e-17,-7.386425455654933e-18)
    sum a = (6.01803763072839e-17,1.1393230109346675e-17,-1.2973996876830541e-16)
    sum e = 2.592000914298645
    sum de = -1.9786689647860456e-18
Info: CFL hydro = 0.009200305552141972 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009200305552141972 cfl multiplier : 0.8275779165901934        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7498e+04 |  512 |      1 | 2.926e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1014.8609553089525 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8947894106460783, dt = 0.009200305552141972 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 us    (0.9%)
   patch tree reduce : 741.00 ns  (0.2%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 672.00 ns  (0.2%)
   LB compute        : 373.28 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.62 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.170845084918497e-18,-1.165083654552923e-17,-9.503628353030314e-18)
    sum a = (-1.92150982625261e-17,-3.2083710688191046e-18,3.039755946954159e-17)
    sum e = 2.5920009720812387
    sum de = -2.439454888092385e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012287528910313397
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.466507017355294e-18,-1.1697674079380604e-17,-8.813140646955763e-18)
    sum a = (-5.567811836582059e-18,-1.9038286572237162e-16,6.00457183974612e-17)
    sum e = 2.592000645572171
    sum de = 3.6591823321385775e-19
Info: CFL hydro = 0.004918186763713036 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004918186763713036 cfl multiplier : 0.4425259721967311        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3314e+04 |  512 |      1 | 3.846e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 861.2694650695996 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.9039897161982204, dt = 0.004918186763713036 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.10 us    (1.1%)
   patch tree reduce : 892.00 ns  (0.2%)
   gen split merge   : 591.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 372.76 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.5162718970723784e-18,-1.3418953448418591e-17,-8.331592252046327e-18)
    sum a = (-5.254293094364426e-17,-2.4197440925965984e-17,-3.2317898357447914e-17)
    sum e = 2.592000737996922
    sum de = -2.15485181781494e-18
Info: CFL hydro = 0.0069824876413678155 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0069824876413678155 cfl multiplier : 0.6283506481311542       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.8040e+04 |  512 |      1 | 2.838e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 623.8366083335487 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.9089079029619334, dt = 0.0069824876413678155 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (0.8%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 601.00 ns  (0.2%)
   LB compute        : 375.89 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.42 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.972937852123272e-18,-1.317598374156459e-17,-8.691472834412156e-18)
    sum a = (-1.3309836631274218e-16,3.013409834162761e-17,-1.0159061092362976e-16)
    sum e = 2.5920008302474944
    sum de = -1.7889335846010823e-18
Info: CFL hydro = 0.008359406387928004 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008359406387928004 cfl multiplier : 0.7522337654207695        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7577e+04 |  512 |      1 | 2.913e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 862.9715809337815 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.9158903906033014, dt = 0.008359406387928004 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (0.8%)
   patch tree reduce : 561.00 ns  (0.2%)
   gen split merge   : 561.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 501.00 ns  (0.1%)
   LB compute        : 358.84 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.19 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.342935717275957e-18,-1.2897885884322058e-17,-9.873937605042737e-18)
    sum a = (-6.978792543854694e-18,-7.339514738156916e-17,7.91554322088217e-18)
    sum e = 2.592000909706938
    sum de = 1.328147661294743e-18
Info: CFL hydro = 0.009280564464458109 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009280564464458109 cfl multiplier : 0.8348225102805129        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6948e+04 |  512 |      1 | 3.021e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 996.1524453360203 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.9242497969912296, dt = 0.009280564464458109 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (0.8%)
   patch tree reduce : 571.00 ns  (0.1%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 441.00 ns  (0.1%)
   LB compute        : 383.18 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.18 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.959453408867833e-18,-1.406004219300927e-17,-9.329451274020516e-18)
    sum a = (-8.534384136893447e-17,-2.606362391535666e-17,4.215378046623641e-19)
    sum e = 2.5920009736891627
    sum de = 2.3310346708438345e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011343468904832505
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.225841882647523e-18,-1.3781944335766738e-17,-9.292859450699131e-18)
    sum a = (-1.742356259271105e-17,-2.6416369092174818e-17,1.2739809207573672e-17)
    sum e = 2.592000649467852
    sum de = -8.944667923005412e-19
Info: CFL hydro = 0.004951189659976883 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004951189659976883 cfl multiplier : 0.444940836760171         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2646e+04 |  512 |      1 | 4.049e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 825.2223083298094 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.933530361455688, dt = 0.004951189659976883 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (0.7%)
   patch tree reduce : 551.00 ns  (0.1%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 721.00 ns  (0.2%)
   LB compute        : 403.87 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.42 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.906761183285037e-18,-1.3603376237958375e-17,-9.355797386811915e-18)
    sum a = (3.107670371038651e-17,-6.242272324041843e-17,5.0490861491780944e-17)
    sum e = 2.592000740609789
    sum de = -9.75781955236954e-19
Info: CFL hydro = 0.0070138507224092725 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0070138507224092725 cfl multiplier : 0.6299605578401141       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6638e+04 |  512 |      1 | 3.077e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 579.232014225171 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.9384815511156646, dt = 0.0070138507224092725 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (0.8%)
   patch tree reduce : 531.00 ns  (0.1%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 431.00 ns  (0.1%)
   LB compute        : 379.73 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.03 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.655009438833904e-18,-1.4288375170534718e-17,-8.773255559535453e-18)
    sum a = (5.704811623097328e-17,-3.573118363686678e-17,-6.013939346516395e-17)
    sum e = 2.5920008368196203
    sum de = 3.0086610286472748e-18
Info: CFL hydro = 0.00839532185539988 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00839532185539988 cfl multiplier : 0.7533070385600761         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6746e+04 |  512 |      1 | 3.057e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 825.856433339642 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.9454954018380737, dt = 0.00839532185539988 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (0.8%)
   patch tree reduce : 702.00 ns  (0.2%)
   gen split merge   : 591.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 431.00 ns  (0.1%)
   LB compute        : 390.80 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.15 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.908536243077634e-18,-1.457232771950867e-17,-9.651459319248713e-18)
    sum a = (-1.049160758270773e-17,-2.168694911153235e-16,-7.461219142523845e-17)
    sum e = 2.5920009247624445
    sum de = 1.9786689647860456e-18
Info: CFL hydro = 0.009319928123452169 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009319928123452169 cfl multiplier : 0.8355380257067173        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7401e+04 |  512 |      1 | 2.942e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1027.168684167206 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.9538907236934735, dt = 0.009319928123452169 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (0.7%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 420.00 ns  (0.1%)
   LB compute        : 397.15 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 2.11 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.614026596713952e-18,-1.7343060581404002e-17,-1.0336458251825054e-17)
    sum a = (-2.074902749615859e-17,-6.512759082033526e-17,-1.2613347866174962e-16)
    sum e = 2.592000999788901
    sum de = 1.0299920638612292e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010891485039760698
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.359347506397107e-18,-1.666098899469337e-17,-1.0760923402353128e-17)
    sum a = (1.1084102385927607e-16,-1.2646134139870923e-18,-6.7914424084492e-18)
    sum e = 2.5920006538531557
    sum de = -1.9786689647860456e-18
Info: CFL hydro = 0.004960409434559081 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004960409434559081 cfl multiplier : 0.4451793419022391        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2714e+04 |  512 |      1 | 4.027e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 833.1730291731957 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.9632106518169254, dt = 0.004960409434559081 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (0.8%)
   patch tree reduce : 490.00 ns  (0.1%)
   gen split merge   : 472.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 501.00 ns  (0.1%)
   LB compute        : 365.74 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 1964.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.222073637568437e-18,-1.6486811915683574e-17,-1.0081779161508209e-17)
    sum a = (7.030313831091206e-17,8.18485904052757e-18,4.458933222650785e-17)
    sum e = 2.592000750516407
    sum de = -2.4665599424045226e-18
Info: CFL hydro = 0.0070173170623173955 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0070173170623173955 cfl multiplier : 0.6301195612681595       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6985e+04 |  512 |      1 | 3.015e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 592.385206374525 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.9681710612514847, dt = 0.0070173170623173955 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.76 us    (1.0%)
   patch tree reduce : 1202.00 ns (0.3%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 373.53 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.213291599971304e-18,-1.6229205479501017e-17,-9.800753958399966e-18)
    sum a = (2.505808061048498e-17,1.6217496096038177e-17,-5.4425214335296344e-17)
    sum e = 2.592000855030338
    sum de = -2.5478751053409354e-18
Info: CFL hydro = 0.00838610717044472 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00838610717044472 cfl multiplier : 0.7534130408454397         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6751e+04 |  512 |      1 | 3.057e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 826.5112318826905 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.9751883783138022, dt = 0.00838610717044472 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.56 us    (0.9%)
   patch tree reduce : 952.00 ns  (0.2%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 395.25 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 2.56 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.769798701316109e-18,-1.5946716603459922e-17,-1.0573573266947634e-17)
    sum a = (-1.1603999011677857e-16,-1.1924836118559768e-16,4.5385570301981204e-17)
    sum e = 2.5920009509610726
    sum de = -6.2341624917916505e-19
Info: CFL hydro = 0.009298857293310578 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009298857293310578 cfl multiplier : 0.8356086938969597        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6778e+04 |  512 |      1 | 3.052e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 989.3179114666879 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.983574485484247, dt = 0.009298857293310578 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.48 us    (0.9%)
   patch tree reduce : 762.00 ns  (0.2%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 387.18 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.73 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.663791476431036e-18,-1.808075173956314e-17,-9.745134386951459e-18)
    sum a = (1.1587605874829876e-16,4.124044855613462e-17,4.463616976035922e-17)
    sum e = 2.592001031821182
    sum de = 1.4772254600114998e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01142019654595534
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.428451521101053e-18,-1.7004952133914396e-17,-9.827100071191363e-18)
    sum a = (-3.09127723419067e-17,-4.75400968591444e-17,1.2383843950303231e-16)
    sum e = 2.5920006573880934
    sum de = 9.893344823930228e-19
Info: CFL hydro = 0.004956545665380151 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004956545665380151 cfl multiplier : 0.4452028979656532        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2519e+04 |  512 |      1 | 4.090e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 818.5530750291456 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.9928733427775573, dt = 0.004956545665380151 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (0.8%)
   patch tree reduce : 591.00 ns  (0.2%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 451.00 ns  (0.1%)
   LB compute        : 359.39 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.37 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.321292010142866e-18,-1.7739715946207824e-17,-8.817165747521116e-18)
    sum a = (5.564299021543207e-17,-3.91327595328228e-17,7.109937638638541e-17)
    sum e = 2.592000762448877
    sum de = -3.3881317890172014e-19
Info: CFL hydro = 0.007017287339964739 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007017287339964739 cfl multiplier : 0.6301352653104355        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6512e+04 |  512 |      1 | 3.101e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 575.4570848261847 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.9978298884429373, dt = 0.002170111557062704 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.26 us    (0.8%)
   patch tree reduce : 702.00 ns  (0.2%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 701.00 ns  (0.2%)
   LB compute        : 382.94 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.90 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.746068547530681e-18,-1.8014886457584643e-17,-8.943041619746683e-18)
    sum a = (-1.297633875352311e-16,9.789044574937122e-18,1.331122712056043e-16)
    sum e = 2.5920006755978475
    sum de = 1.9109063290057016e-18
Info: CFL hydro = 0.008392250925780208 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008392250925780208 cfl multiplier : 0.753423510206957         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6461e+04 |  512 |      1 | 3.110e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 251.1761656690354 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 405                                                     [SPH][rank=0]
Info: time since start : 721.985478293 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14971809796359767 max=0.1503288591963835 delta=0.0006107612327858336
Number of particle pairs: 130816
Distance min=0.146293 max=1.991984 mean=0.806540
---------------- t = 3, dt = 0.008392250925780208 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.11 us   (1.5%)
   patch tree reduce : 1423.00 ns (0.2%)
   gen split merge   : 642.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.1%)
   LB compute        : 649.62 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.02 us    (75.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.283656963495312e-18,-1.7667995972497906e-17,-7.698919626819568e-18)
    sum a = (4.6369158512860054e-18,-2.203705967707137e-17,-1.0735162758734873e-16)
    sum e = 2.5920009698916995
    sum de = -9.486769009248164e-20
Info: CFL hydro = 0.009315068220382434 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009315068220382434 cfl multiplier : 0.8356156734713046        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4652e+04 |  512 |      1 | 3.494e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 864.5705547715177 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.0083922509257803, dt = 0.009315068220382434 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.35 us    (0.8%)
   patch tree reduce : 561.00 ns  (0.1%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 662.00 ns  (0.2%)
   LB compute        : 375.23 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 20.31 us   (5.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.921397912613592e-18,-1.7985612998927537e-17,-9.71293358242864e-18)
    sum a = (-8.224670944301238e-17,-1.0763265279045697e-16,-1.140259761611695e-16)
    sum e = 2.5920010535382945
    sum de = -2.574980159653073e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011588724595971883
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.124116613814069e-18,-1.8424714878784164e-17,-9.81831803359423e-18)
    sum a = (-2.277240895853794e-16,-4.5900783174346314e-18,-2.1217402834672327e-17)
    sum e = 2.5920006580058104
    sum de = 1.8566962203814263e-18
Info: CFL hydro = 0.004971276702929605 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004971276702929605 cfl multiplier : 0.4452052244904349        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2555e+04 |  512 |      1 | 4.078e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 822.2946490445893 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.017707319146163, dt = 0.004971276702929605 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (1.0%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 422.00 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0274983988645125e-17,-1.8224923523449398e-17,-9.513874063560301e-18)
    sum a = (-1.8688176006698142e-17,3.4987637786976223e-17,2.8102520310824276e-19)
    sum e = 2.5920007694256877
    sum de = 4.2012834183813297e-19
Info: CFL hydro = 0.007042718342526092 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007042718342526092 cfl multiplier : 0.6301368163269566        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6688e+04 |  512 |      1 | 3.068e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 583.3093977983012 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.0226785958490927, dt = 0.007042718342526092 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.01 us    (0.9%)
   patch tree reduce : 1313.00 ns (0.3%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 622.00 ns  (0.1%)
   LB compute        : 411.68 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (73.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.573884653807374e-18,-1.7720688198080703e-17,-9.496309988366036e-18)
    sum a = (5.391000146293123e-17,-7.704774318550988e-18,6.316041439857756e-17)
    sum e = 2.59200088536048
    sum de = -1.9651164376299768e-18
Info: CFL hydro = 0.008433583577720047 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008433583577720047 cfl multiplier : 0.753424544217971         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6558e+04 |  512 |      1 | 3.092e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 819.9532005382335 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.029721314191619, dt = 0.008433583577720047 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.52 us    (0.9%)
   patch tree reduce : 982.00 ns  (0.3%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 681.00 ns  (0.2%)
   LB compute        : 371.62 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.77 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.683788551514665e-18,-1.8195284146559077e-17,-8.618106228652778e-18)
    sum a = (-1.170469970945831e-16,-4.4683007294210596e-17,-3.0690294056112675e-17)
    sum e = 2.5920009867573075
    sum de = 2.588532686809142e-18
Info: CFL hydro = 0.009372364995096154 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009372364995096154 cfl multiplier : 0.8356163628119807        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6513e+04 |  512 |      1 | 3.101e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 979.2000308520186 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.038154897769339, dt = 0.009372364995096154 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (0.8%)
   patch tree reduce : 731.00 ns  (0.2%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 409.02 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.75 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0677494045180369e-17,-1.851674331443745e-17,-9.379216153737601e-18)
    sum a = (-8.922550198686708e-17,-8.646208748963602e-17,-6.543203479036919e-17)
    sum e = 2.59200106507439
    sum de = 2.168404344971009e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010702763327421308
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0496730437972722e-17,-1.8462953334155012e-17,-9.537292830485988e-18)
    sum a = (-6.833596188915436e-17,-3.320781150062402e-17,1.50114295993653e-17)
    sum e = 2.5920006591351816
    sum de = 2.1819568721270777e-18
Info: CFL hydro = 0.004992405381942982 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004992405381942982 cfl multiplier : 0.4452054542706603        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2025e+04 |  512 |      1 | 4.258e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 792.4694188113627 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.047527262764435, dt = 0.004992405381942982 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (1.1%)
   patch tree reduce : 1312.00 ns (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 396.55 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0743359327158864e-17,-1.845526905125752e-17,-9.051353416777985e-18)
    sum a = (-3.5690200794746826e-17,1.056186388348479e-17,-5.2768336575304e-17)
    sum e = 2.59200077326017
    sum de = 9.012430558785756e-19
Info: CFL hydro = 0.007065493213175002 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007065493213175002 cfl multiplier : 0.6301369695137735        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6213e+04 |  512 |      1 | 3.158e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 569.1072056105455 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.052519668146378, dt = 0.007065493213175002 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.31 us    (1.0%)
   patch tree reduce : 1112.00 ns (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 398.16 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.098779270694572e-17,-1.8136371311011646e-17,-9.584130364337362e-18)
    sum a = (-1.7657750261967918e-16,-2.0655352428455842e-17,3.1889042188121276e-17)
    sum e = 2.592000886852305
    sum de = 9.012430558785756e-19
Info: CFL hydro = 0.008448186329587123 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008448186329587123 cfl multiplier : 0.7534246463425157        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6389e+04 |  512 |      1 | 3.124e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 814.1711447092509 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.059585161359553, dt = 0.008448186329587123 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.2%)
   patch tree reduce : 1844.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 404.79 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2830556929410707e-17,-1.8850643702245096e-17,-8.986951807732346e-18)
    sum a = (-2.0421164759198974e-17,-6.777391148293788e-17,2.838647285979823e-17)
    sum e = 2.592000981587646
    sum de = -1.4704491964334654e-18
Info: CFL hydro = 0.009367936384357792 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009367936384357792 cfl multiplier : 0.8356164308950106        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6180e+04 |  512 |      1 | 3.164e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 961.142688988472 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.0680333476891404, dt = 0.009367936384357792 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 398.55 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2729563497043683e-17,-1.9501246320899333e-17,-8.76447352193832e-18)
    sum a = (-4.337155634637213e-17,-7.168484555952759e-17,-2.0828651303705926e-16)
    sum e = 2.5920010496682933
    sum de = 2.4936649967166602e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010049567622864382
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2666625560930899e-17,-1.9359270046412358e-17,-9.941266559954087e-18)
    sum a = (-4.465958852728491e-17,-7.002211310780382e-18,1.0183650797634946e-16)
    sum e = 2.592000659700048
    sum de = 1.3552527156068805e-19
Info: CFL hydro = 0.004988733408996417 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004988733408996417 cfl multiplier : 0.44520547696500357       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2389e+04 |  512 |      1 | 4.133e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 816.0347726866735 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.077401284073498, dt = 0.004988733408996417 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 399.79 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.30 us    (74.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2754445936902225e-17,-1.9122155031289777e-17,-7.927252604345014e-18)
    sum a = (-7.447167882368433e-18,4.4776682361913347e-17,8.310149443579995e-17)
    sum e = 2.5920007694033207
    sum de = -6.352747104407253e-19
Info: CFL hydro = 0.007059308520592879 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007059308520592879 cfl multiplier : 0.6301369846433357        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6270e+04 |  512 |      1 | 3.147e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 570.7205050534045 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.0823900174824947, dt = 0.007059308520592879 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.1%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 7.82 us    (1.8%)
   LB compute        : 403.20 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (73.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2985706260293384e-17,-1.857108217206971e-17,-7.259817746962937e-18)
    sum a = (7.163800802567622e-17,2.3137741722578652e-17,-2.2224409812476865e-17)
    sum e = 2.592000875562746
    sum de = 1.8876129229562083e-18
Info: CFL hydro = 0.00843886401824725 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00843886401824725 cfl multiplier : 0.7534246564288903         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7099e+04 |  512 |      1 | 2.994e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 848.719376363073 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.0894493260030877, dt = 0.00843886401824725 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.2%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 416.69 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 us    (75.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1946498477966027e-17,-1.8799415149595156e-17,-7.909688529150748e-18)
    sum a = (1.7470400126562424e-17,-8.149730890139039e-17,2.7587307438459164e-17)
    sum e = 2.59200096223847
    sum de = 4.912791094074942e-20
Info: CFL hydro = 0.009357781122260527 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009357781122260527 cfl multiplier : 0.8356164376192602        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6729e+04 |  512 |      1 | 3.061e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 992.6373234527432 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.097888190021335, dt = 0.009357781122260527 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 409.49 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (72.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2048955583265908e-17,-1.9895706176303875e-17,-7.412039731979903e-18)
    sum a = (4.4144375654919795e-17,9.782018944859416e-17,-1.127847815141081e-16)
    sum e = 2.59200102380736
    sum de = 5.454892180317694e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010648991229253417
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1753293650829111e-17,-1.8723304157086674e-17,-8.196568423990413e-18)
    sum a = (1.6973922267737862e-16,-8.149730890139039e-17,-8.547849927875717e-18)
    sum e = 2.592000660765389
    sum de = 2.168404344971009e-19
Info: CFL hydro = 0.004982896208094076 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004982896208094076 cfl multiplier : 0.4452054792064201        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2734e+04 |  512 |      1 | 4.021e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 837.8800448631252 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.1072459711435956, dt = 0.004982896208094076 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.50 us    (1.1%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 378.57 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0608701417336164e-17,-2.021039585686779e-17,-7.64037270950535e-18)
    sum a = (-3.9928997608296154e-17,1.2973996876830541e-16,-6.227050125540145e-17)
    sum e = 2.5920007628615034
    sum de = 1.9481757786848908e-18
Info: CFL hydro = 0.007050740843677385 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007050740843677385 cfl multiplier : 0.6301369861376135        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6682e+04 |  512 |      1 | 3.069e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 584.4573155155742 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.1122288673516896, dt = 0.007050740843677385 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.22 us    (1.0%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 402.12 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1317119116838193e-17,-1.8985301612067794e-17,-8.161440273601883e-18)
    sum a = (-3.19900356204883e-17,1.4730404396257056e-16,-1.0449453802241493e-16)
    sum e = 2.5920008617190895
    sum de = -3.5236570605778894e-18
Info: CFL hydro = 0.008428516368786573 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008428516368786573 cfl multiplier : 0.7534246574250757        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6809e+04 |  512 |      1 | 3.046e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 833.3383795864772 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.119279608195367, dt = 0.008428516368786573 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.16 us    (1.0%)
   patch tree reduce : 1843.00 ns (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 391.64 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.151032394397511e-17,-1.7640186186773654e-17,-9.145028484480733e-18)
    sum a = (-1.1903759228326648e-16,-2.1826290774740188e-17,-3.48471251854221e-17)
    sum e = 2.5920009435525495
    sum de = 3.5914196963582334e-19
Info: CFL hydro = 0.009338787321520487 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009338787321520487 cfl multiplier : 0.8356164382833837        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6436e+04 |  512 |      1 | 3.115e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 974.0522859614308 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.127708124564154, dt = 0.009338787321520487 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.2%)
   patch tree reduce : 3.58 us    (0.9%)
   gen split merge   : 1904.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1703.00 ns (0.4%)
   LB compute        : 377.69 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2821774891813576e-17,-1.8462770375038405e-17,-9.089408913032226e-18)
    sum a = (7.527962628262053e-17,-2.5432780881295968e-17,2.9976021664879226e-18)
    sum e = 2.5920010036435697
    sum de = -7.995991022080595e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011089097926396445
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2411946470614055e-17,-1.85418087134126e-17,-8.99573384532948e-18)
    sum a = (4.183762711273964e-17,-1.2674236660181748e-16,-3.981190377366772e-18)
    sum e = 2.5920006629244225
    sum de = -7.724940478959219e-19
Info: CFL hydro = 0.004972233213051357 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004972233213051357 cfl multiplier : 0.4452054794277946        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3257e+04 |  512 |      1 | 3.862e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 870.493550807024 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.1370469118856743, dt = 0.004972233213051357 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.33 us    (1.1%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 375.50 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.191722501930892e-17,-1.9668836871711283e-17,-9.127464409286467e-18)
    sum a = (4.4577622843045007e-17,-6.36053709701656e-17,-3.7470027081099033e-19)
    sum e = 2.592000758597691
    sum de = -1.3145951341386741e-18
Info: CFL hydro = 0.007035226810569564 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007035226810569564 cfl multiplier : 0.6301369862851964        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7491e+04 |  512 |      1 | 2.927e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 611.4993311095151 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.142019145098726, dt = 0.007035226810569564 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.38 us    (1.1%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 389.99 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.18 us    (75.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1694746733514893e-17,-1.983276824019109e-17,-9.16551990554071e-18)
    sum a = (-4.2973437308635455e-17,-1.6861512186494566e-17,-1.4285447824669005e-17)
    sum e = 2.5920008540135324
    sum de = -2.087089182034596e-18
Info: CFL hydro = 0.008409287027490669 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008409287027490669 cfl multiplier : 0.7534246575234643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6957e+04 |  512 |      1 | 3.019e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 838.8234328317026 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.1490543719092954, dt = 0.008409287027490669 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.15 us    (1.1%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 370.68 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2540749688705332e-17,-1.966298217997986e-17,-9.232848860452059e-18)
    sum a = (-4.4887921504810354e-17,-5.971785566050158e-17,4.5385570301981204e-17)
    sum e = 2.592000936057352
    sum de = 1.2468324983583301e-18
Info: CFL hydro = 0.009326158443872322 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009326158443872322 cfl multiplier : 0.8356164383489763        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5646e+04 |  512 |      1 | 3.272e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 925.0970660839942 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.157463658936786, dt = 0.009326158443872322 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.81 us    (1.0%)
   patch tree reduce : 3.18 us    (0.8%)
   gen split merge   : 1513.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 2.06 us    (0.5%)
   LB compute        : 369.13 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2897885884322058e-17,-2.0634861007395867e-17,-8.550777273741428e-18)
    sum a = (1.2767618993297925e-16,9.707078890697218e-18,1.6079325371176623e-16)
    sum e = 2.5920010009037906
    sum de = 2.4665599424045226e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01090314541590714
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.189087890651752e-17,-2.0078665292910804e-17,-7.97994482992781e-18)
    sum a = (-7.536159196686043e-17,-8.943627088919825e-17,-2.964815892791961e-17)
    sum e = 2.5920006660341643
    sum de = 1.4365678785432934e-18
Info: CFL hydro = 0.0049712158282705764 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0049712158282705764 cfl multiplier : 0.4452054794496587       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2804e+04 |  512 |      1 | 3.999e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 839.6248710444465 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.1667898173806583, dt = 0.0049712158282705764 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.77 us    (0.9%)
   patch tree reduce : 822.00 ns  (0.2%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 411.84 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3146710282907482e-17,-2.1150073879760977e-17,-9.108436661159346e-18)
    sum a = (1.3743888839512496e-18,4.8031890964583825e-17,-6.262178275928675e-17)
    sum e = 2.592000760134129
    sum de = -1.4907779871675686e-18
Info: CFL hydro = 0.007038056941212423 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007038056941212423 cfl multiplier : 0.6301369862997724        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7467e+04 |  512 |      1 | 2.931e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 610.5391931320725 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.171761033208929, dt = 0.007038056941212423 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.82 us    (0.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 : 912.00 ns  (0.2%)
   LB compute        : 390.77 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.85 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3161347012236035e-17,-2.034505376669049e-17,-9.708542563630074e-18)
    sum a = (3.9006883660597235e-18,5.841811409612596e-17,9.929557176491244e-18)
    sum e = 2.592000857699234
    sum de = 1.463672932855431e-18
Info: CFL hydro = 0.008416836166623616 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008416836166623616 cfl multiplier : 0.7534246575331816        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6985e+04 |  512 |      1 | 3.015e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 840.5028057623086 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.1787990901501413, dt = 0.008416836166623616 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.60 us    (0.9%)
   patch tree reduce : 1022.00 ns (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 752.00 ns  (0.2%)
   LB compute        : 386.33 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.91 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3126218861847505e-17,-1.983862293192251e-17,-9.159665213809288e-18)
    sum a = (3.556139757665555e-17,-4.871103520542874e-18,2.880508331859488e-17)
    sum e = 2.5920009445161494
    sum de = 1.870248747537495e-18
Info: CFL hydro = 0.00932687198679433 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00932687198679433 cfl multiplier : 0.8356164383554544         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6671e+04 |  512 |      1 | 3.071e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 986.6089322076564 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.1872159263167648, dt = 0.00932687198679433 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 382.11 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2695899019588009e-17,-2.026894277418201e-17,-9.079163202502238e-18)
    sum a = (4.947214513051357e-17,-3.9284981517839765e-17,-4.6509671114414175e-17)
    sum e = 2.592001014843093
    sum de = 3.06287113727155e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010742641484190211
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2672480252662321e-17,-2.030699827043625e-17,-9.168447251406419e-18)
    sum a = (4.419121318877117e-17,-7.302556996602317e-17,3.8781478028937496e-17)
    sum e = 2.592000669372083
    sum de = 3.781155076543197e-18
Info: CFL hydro = 0.004967149389588411 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004967149389588411 cfl multiplier : 0.44520547945181815       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2657e+04 |  512 |      1 | 4.045e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 830.0594752224094 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.1965427983035593, dt = 0.004967149389588411 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.24 us    (0.8%)
   patch tree reduce : 952.00 ns  (0.2%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 682.00 ns  (0.2%)
   LB compute        : 371.88 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2315344057045596e-17,-2.071975403750148e-17,-8.672262127168428e-18)
    sum a = (6.489340315107838e-17,5.2557567672972814e-17,9.100532827321927e-17)
    sum e = 2.5920007662085873
    sum de = -1.666960840196463e-18
Info: CFL hydro = 0.007029037527115225 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007029037527115225 cfl multiplier : 0.6301369863012121        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4998e+04 |  512 |      1 | 3.414e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 523.8218771669859 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.2015099476931477, dt = 0.007029037527115225 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (1.1%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 417.15 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1937716440368895e-17,-2.014013955609073e-17,-8.026050527312755e-18)
    sum a = (-6.06663157209919e-17,-3.814917132194395e-17,-7.330074047739999e-17)
    sum e = 2.592000868071917
    sum de = 1.3417001884508117e-18
Info: CFL hydro = 0.008397856846117114 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008397856846117114 cfl multiplier : 0.7534246575341413        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6734e+04 |  512 |      1 | 3.060e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 827.0318081399599 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.208538985220263, dt = 0.008397856846117114 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.13 us    (1.0%)
   patch tree reduce : 982.00 ns  (0.2%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 631.00 ns  (0.1%)
   LB compute        : 418.00 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.89 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3014979718950492e-17,-2.0585096127678782e-17,-9.113559516424341e-18)
    sum a = (-5.936657415661627e-17,1.5910417514725107e-16,-3.999925390907322e-17)
    sum e = 2.592000958740374
    sum de = 1.1248597539537109e-18
Info: CFL hydro = 0.009303537951884188 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009303537951884188 cfl multiplier : 0.8356164383560941        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6495e+04 |  512 |      1 | 3.104e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 973.9676367577445 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.21693684206638, dt = 0.009303537951884188 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.15 us    (1.0%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 404.31 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3360406531104373e-17,-1.8325185119349997e-17,-9.41141695826042e-18)
    sum a = (1.127613627471824e-16,-1.129194394239308e-16,-9.671950740308688e-17)
    sum e = 2.592001031631879
    sum de = 6.505213034913027e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010677499424274466
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2482202771391115e-17,-1.9882533119908173e-17,-9.477282240238915e-18)
    sum a = (7.568945470382004e-17,1.538027517844487e-17,-2.899243345400038e-17)
    sum e = 2.5920006720420408
    sum de = -6.2341624917916505e-19
Info: CFL hydro = 0.004953789640448548 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004953789640448548 cfl multiplier : 0.4452054794520313        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2491e+04 |  512 |      1 | 4.099e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 817.0878515717635 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.226240380018264, dt = 0.004953789640448548 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.26 us    (0.8%)
   patch tree reduce : 772.00 ns  (0.2%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 691.00 ns  (0.2%)
   LB compute        : 394.27 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.58 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2271433869059933e-17,-1.878185107440089e-17,-9.449472454514663e-18)
    sum a = (7.807816893024011e-17,-2.0895394789444133e-17,-7.943645741192995e-17)
    sum e = 2.5920007728569363
    sum de = 8.402566836762659e-19
Info: CFL hydro = 0.007009451995471931 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007009451995471931 cfl multiplier : 0.6301369863013542        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6502e+04 |  512 |      1 | 3.103e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 574.8011372102934 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.2311941696587128, dt = 0.007009451995471931 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.45 us    (1.1%)
   patch tree reduce : 1202.00 ns (0.3%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 388.59 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 2.75 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1539597402632218e-17,-1.8995547322597784e-17,-1.0176917902143811e-17)
    sum a = (-1.307938132799613e-16,-2.1832145466471607e-17,-6.604092273043705e-17)
    sum e = 2.592000877564261
    sum de = -2.5614276324970042e-18
Info: CFL hydro = 0.008379366340694343 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008379366340694343 cfl multiplier : 0.7534246575342362        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6223e+04 |  512 |      1 | 3.156e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 799.5400347425642 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.2382036216541845, dt = 0.008379366340694343 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.76 us    (0.9%)
   patch tree reduce : 1072.00 ns (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 641.00 ns  (0.2%)
   LB compute        : 388.54 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.69 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3439444869478567e-17,-1.9343901480617376e-17,-1.0652611605321827e-17)
    sum a = (6.145084441300241e-17,-7.871047563723366e-17,-6.252810769158401e-17)
    sum e = 2.5920009691276196
    sum de = 2.520770051028798e-18
Info: CFL hydro = 0.009294744825950567 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009294744825950567 cfl multiplier : 0.8356164383561575        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6460e+04 |  512 |      1 | 3.111e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 969.7788499278682 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.246582987994879, dt = 0.009294744825950567 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (0.8%)
   patch tree reduce : 641.00 ns  (0.2%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 691.00 ns  (0.2%)
   LB compute        : 412.56 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.18 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2015291105810233e-17,-2.0356763150153335e-17,-1.0995111071609997e-17)
    sum a = (-7.742244345632088e-17,-1.3407244064955747e-17,-4.632232097900868e-17)
    sum e = 2.5920010403119043
    sum de = 3.0357660829594124e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011177307803147954
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.269882636545372e-17,-1.996742615001379e-17,-1.1018529838535684e-17)
    sum a = (1.788491230114708e-16,1.059699203387332e-17,-3.4659775050016606e-17)
    sum e = 2.5920006735927683
    sum de = 2.168404344971009e-19
Info: CFL hydro = 0.00495121327529327 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00495121327529327 cfl multiplier : 0.4452054794520525         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1955e+04 |  512 |      1 | 4.283e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 781.2839866737255 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.2558777328208293, dt = 0.00495121327529327 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.43 us    (0.8%)
   patch tree reduce : 972.00 ns  (0.2%)
   gen split merge   : 682.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 393.85 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.38 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.054576348122338e-17,-1.989716984923673e-17,-1.1194170590478337e-17)
    sum a = (3.6626951471774306e-17,-6.231733878925282e-17,-8.210619684145825e-17)
    sum e = 2.592000776627519
    sum de = -1.0842021724855044e-19
Info: CFL hydro = 0.007005089158541011 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007005089158541011 cfl multiplier : 0.6301369863013684        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6382e+04 |  512 |      1 | 3.125e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 570.3247443824466 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.2608289460961224, dt = 0.007005089158541011 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (1.0%)
   patch tree reduce : 1303.00 ns (0.3%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 402.48 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0579427958679055e-17,-2.064071569912729e-17,-1.178549445535193e-17)
    sum a = (-1.1381520725883831e-17,-1.1744511613231978e-17,-1.2945894356519716e-16)
    sum e = 2.5920008803220673
    sum de = -9.215718466126788e-19
Info: CFL hydro = 0.008372843545876444 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008372843545876444 cfl multiplier : 0.7534246575342456        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6187e+04 |  512 |      1 | 3.163e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 797.3071409693559 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.2678340352546633, dt = 0.008372843545876444 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.19 us    (1.0%)
   patch tree reduce : 1692.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.2%)
   LB compute        : 386.35 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0816542973801635e-17,-2.0403600684004708e-17,-1.3038398485876179e-17)
    sum a = (9.086481567166516e-17,-1.6587512613464027e-16,3.924985336745124e-17)
    sum e = 2.592000967785004
    sum de = -1.7618285302889447e-18
Info: CFL hydro = 0.009285552708772548 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009285552708772548 cfl multiplier : 0.8356164383561637        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6317e+04 |  512 |      1 | 3.138e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 960.6040318523111 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.2762068788005396, dt = 0.009285552708772548 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.59 us    (0.8%)
   patch tree reduce : 892.00 ns  (0.2%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 422.51 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.86 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.784653556138556e-18,-2.2575691316362166e-17,-1.1905515635846075e-17)
    sum a = (9.690685753849237e-17,1.0433060665393512e-16,7.475270402679257e-17)
    sum e = 2.5920010320204767
    sum de = 1.111307226797642e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010493545432003025
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.865155567445604e-18,-2.1334496669300763e-17,-1.1721092846306292e-17)
    sum a = (-1.5503223704804724e-17,-1.3128560738540073e-16,6.323067069935462e-18)
    sum e = 2.5920006742902775
    sum de = 1.8973538018496328e-19
Info: CFL hydro = 0.004949747435067764 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004949747435067764 cfl multiplier : 0.4452054794520546        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2093e+04 |  512 |      1 | 4.234e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 789.5485393602911 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.2854924315093124, dt = 0.004949747435067764 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 372.86 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (62.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.028962071797368e-17,-2.3014793196218797e-17,-1.2283143252522777e-17)
    sum a = (2.337192939183552e-17,9.034960279930004e-17,1.426202905774332e-17)
    sum e = 2.592000775057614
    sum de = -1.0164395367051604e-18
Info: CFL hydro = 0.00700782734473111 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00700782734473111 cfl multiplier : 0.6301369863013697         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6386e+04 |  512 |      1 | 3.125e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 570.2776406904305 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.2904421789443803, dt = 0.00700782734473111 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.43 us    (0.9%)
   patch tree reduce : 782.00 ns  (0.2%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 701.00 ns  (0.2%)
   LB compute        : 386.19 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.62 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0054701212250382e-17,-2.1580393722020476e-17,-1.1937716440368895e-17)
    sum a = (-2.074902749615859e-17,1.4203482140429102e-16,7.751611852402363e-17)
    sum e = 2.5920008735775597
    sum de = -2.5478751053409354e-18
Info: CFL hydro = 0.008384124018410112 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008384124018410112 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6254e+04 |  512 |      1 | 3.150e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 800.8931044484139 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.2974500062891114, dt = 0.008384124018410112 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.96 us    (1.0%)
   patch tree reduce : 1152.00 ns (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 392.32 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0598455706806176e-17,-2.0485566368244612e-17,-1.1100495522775589e-17)
    sum a = (1.3521996022891613e-16,1.434867849536836e-16,-1.1301896918336495e-16)
    sum e = 2.592000954709526
    sum de = -1.0842021724855044e-19
Info: CFL hydro = 0.009308422248530622 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009308422248530622 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6142e+04 |  512 |      1 | 3.172e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 951.5577456361069 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.3058341303075216, dt = 0.009308422248530622 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 us    (0.9%)
   patch tree reduce : 721.00 ns  (0.2%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 682.00 ns  (0.2%)
   LB compute        : 362.87 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.515649123352897e-18,-1.8988228957933507e-17,-1.300912502721907e-17)
    sum a = (-1.2088767487039575e-16,5.6439228290905416e-18,1.1170751823552649e-17)
    sum e = 2.5920010127674225
    sum de = -1.5178830414797062e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010595820182506535
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.552295478047757e-18,-1.9641027085987028e-17,-1.2370963628494103e-17)
    sum a = (-6.992843804010107e-17,5.248145668046433e-17,-4.4401982091102355e-17)
    sum e = 2.592000674987111
    sum de = -6.369687763352339e-19
Info: CFL hydro = 0.0049677193853401545 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0049677193853401545 cfl multiplier : 0.44520547945205474      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2204e+04 |  512 |      1 | 4.195e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 798.7607645383317 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.3151425525560523, dt = 0.0049677193853401545 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 us    (0.9%)
   patch tree reduce : 702.00 ns  (0.2%)
   gen split merge   : 611.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 681.00 ns  (0.2%)
   LB compute        : 377.40 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.62 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.984444911473322e-18,-1.9405375743797304e-17,-1.2821774891813576e-17)
    sum a = (6.421425891023347e-17,3.730609571261923e-17,-8.594687461727091e-18)
    sum e = 2.5920007703807353
    sum de = 7.724940478959219e-19
Info: CFL hydro = 0.007037626194300744 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007037626194300744 cfl multiplier : 0.6301369863013698        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6291e+04 |  512 |      1 | 3.143e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 569.049418476287 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.3201102719413926, dt = 0.007037626194300744 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 us    (0.8%)
   patch tree reduce : 570.00 ns  (0.1%)
   gen split merge   : 612.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 631.00 ns  (0.2%)
   LB compute        : 394.72 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.31 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.93133223628384e-18,-1.9054094239912e-17,-1.287446711739637e-17)
    sum a = (4.8195822333063634e-17,6.091221277371162e-17,-3.8594127893532006e-17)
    sum e = 2.592000862770537
    sum de = 1.2265037076242269e-18
Info: CFL hydro = 0.008426892786218004 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008426892786218004 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6563e+04 |  512 |      1 | 3.091e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 819.5751968832011 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.3271478981356934, dt = 0.008426892786218004 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 us    (1.0%)
   patch tree reduce : 702.00 ns  (0.2%)
   gen split merge   : 591.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 401.01 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.41 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.552240946674283e-18,-1.8464234047971263e-17,-1.3284295538595891e-17)
    sum a = (-2.978867152947373e-17,-9.847591492251339e-17,5.5139486726529796e-17)
    sum e = 2.592000939150988
    sum de = -9.0801931945661e-19
Info: CFL hydro = 0.009360951965243582 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009360951965243582 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6582e+04 |  512 |      1 | 3.088e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 982.4888444029518 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.3355747909219113, dt = 0.009360951965243582 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (0.8%)
   patch tree reduce : 621.00 ns  (0.2%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 741.00 ns  (0.2%)
   LB compute        : 389.68 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.60 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.448008781581807e-18,-2.0001090627469464e-17,-1.2482202771391115e-17)
    sum a = (1.3325278380715843e-16,-7.868705687030796e-18,6.740447128672933e-17)
    sum e = 2.5920009952130187
    sum de = -4.458781434346637e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010905126231919346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.315125931551703e-18,-1.989351066690459e-17,-1.2482202771391115e-17)
    sum a = (-8.430756093247283e-17,2.37700484295722e-17,1.9812093860014506e-17)
    sum e = 2.5920006766205264
    sum de = -7.453889935837843e-19
Info: CFL hydro = 0.004988970825132113 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004988970825132113 cfl multiplier : 0.44520547945205474       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1937e+04 |  512 |      1 | 4.289e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 785.6618580439432 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.344935742887155, dt = 0.004988970825132113 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (0.9%)
   patch tree reduce : 651.00 ns  (0.2%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 581.00 ns  (0.2%)
   LB compute        : 373.82 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.32 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0042259992321111e-17,-1.937756595807305e-17,-1.2476348079659694e-17)
    sum a = (-2.4168167467308877e-17,-2.744679483690504e-17,1.6179440599783932e-17)
    sum e = 2.5920007662623115
    sum de = -2.981555974335137e-19
Info: CFL hydro = 0.007062632034812706 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007062632034812706 cfl multiplier : 0.6301369863013698        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6342e+04 |  512 |      1 | 3.133e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 573.2402800416495 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.349924713712287, dt = 0.007062632034812706 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (0.8%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 611.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 511.00 ns  (0.1%)
   LB compute        : 376.94 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.11 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0029086935925413e-17,-1.979764008980256e-17,-1.2523185613511068e-17)
    sum a = (-3.531550052393584e-17,-2.6957342608158183e-16,-8.565414003069982e-18)
    sum e = 2.592000854842851
    sum de = 9.486769009248164e-20
Info: CFL hydro = 0.008447982685397532 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008447982685397532 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6469e+04 |  512 |      1 | 3.109e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 817.8423956723046 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.3569873457471, dt = 0.008447982685397532 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.2%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 433.41 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (74.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0313039484899366e-17,-2.2986251574028116e-17,-1.259929660601955e-17)
    sum a = (-1.6018436577169837e-16,-1.3299517737097588e-16,5.346504489134318e-17)
    sum e = 2.5920009305356415
    sum de = 2.1243586317137853e-18
Info: CFL hydro = 0.009372315454558022 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009372315454558022 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5861e+04 |  512 |      1 | 3.228e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 942.1711023698693 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.3654353284324974, dt = 0.009372315454558022 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (1.2%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 372.52 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2315344057045596e-17,-2.341382702953851e-17,-1.1914297673443208e-17)
    sum a = (4.9460435747050725e-17,1.2842851782046695e-16,-9.526754385369429e-17)
    sum e = 2.592000990046766
    sum de = 1.6491731483041228e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011378802927374828
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1440067643198049e-17,-2.2347015290493083e-17,-1.252904030524249e-17)
    sum a = (1.0332359967613058e-16,4.866419767157737e-17,4.927308561164523e-17)
    sum e = 2.592000679664379
    sum de = 2.501288293241949e-18
Info: CFL hydro = 0.004987393907074693 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004987393907074693 cfl multiplier : 0.44520547945205474       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1966e+04 |  512 |      1 | 4.279e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 788.5449176427218 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.3748076438870553, dt = 0.004987393907074693 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.91 us    (0.9%)
   patch tree reduce : 1352.00 ns (0.3%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 436.52 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (73.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0579427958679055e-17,-2.2409564438483074e-17,-1.1557161477826483e-17)
    sum a = (2.393397979805201e-17,-2.5479618415147344e-17,7.587680483922554e-18)
    sum e = 2.5920007665693814
    sum de = 6.140988867593677e-20
Info: CFL hydro = 0.007054050797454113 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007054050797454113 cfl multiplier : 0.6301369863013698        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6701e+04 |  512 |      1 | 3.066e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 585.6641140280448 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.37979503779413, dt = 0.007054050797454113 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.37 us    (0.8%)
   patch tree reduce : 832.00 ns  (0.2%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 641.00 ns  (0.1%)
   LB compute        : 415.25 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.69 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0693594447441779e-17,-2.2805122048587256e-17,-1.1609853703409278e-17)
    sum a = (6.388639617327386e-17,-1.145411890335346e-16,6.294964549624637e-17)
    sum e = 2.592000856579991
    sum de = -2.625802136488331e-19
Info: CFL hydro = 0.00842756700942704 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00842756700942704 cfl multiplier : 0.7534246575342465         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6466e+04 |  512 |      1 | 3.109e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 816.696308373473 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.386849088591584, dt = 0.00842756700942704 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.05 us    (1.0%)
   patch tree reduce : 972.00 ns  (0.2%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 397.15 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 2.77 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0037868973522546e-17,-2.4169631140241732e-17,-1.1024384530267106e-17)
    sum a = (-2.814935784467565e-17,5.906213018658235e-17,1.7283049991156928e-17)
    sum e = 2.592000937304511
    sum de = -6.06475590234079e-19
Info: CFL hydro = 0.009341282409548153 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009341282409548153 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6401e+04 |  512 |      1 | 3.122e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 971.8739946326273 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.395276655601011, dt = 0.009341282409548153 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.0%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 425.24 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0321821522496499e-17,-2.2894772015724652e-17,-1.1085858793447034e-17)
    sum a = (1.0100514175048758e-16,4.1053098420729125e-17,3.309071766599558e-17)
    sum e = 2.5920010052682203
    sum de = -1.0842021724855044e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012410883425143172
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0102270582568184e-17,-2.2845007136007567e-17,-1.0942418846027202e-17)
    sum a = (3.154507904890025e-17,-2.0079250762083944e-16,-4.376967538410881e-17)
    sum e = 2.592000683666089
    sum de = 6.911788849595091e-19
Info: CFL hydro = 0.004976744851696795 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004976744851696795 cfl multiplier : 0.44520547945205474       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2180e+04 |  512 |      1 | 4.204e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 799.982831047865 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.4046179380105595, dt = 0.004976744851696795 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.2%)
   patch tree reduce : 1974.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.2%)
   LB compute        : 419.58 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0330603560093632e-17,-2.5075644685679245e-17,-1.1586434936483592e-17)
    sum a = (-8.234038451071513e-17,-7.067783858172306e-17,8.477593627098656e-18)
    sum e = 2.592000773822406
    sum de = 2.642742795433417e-18
Info: CFL hydro = 0.007044049577890451 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007044049577890451 cfl multiplier : 0.6301369863013698        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5654e+04 |  512 |      1 | 3.271e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 547.7873166330473 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.4095946828622563, dt = 0.007044049577890451 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.2%)
   patch tree reduce : 2.27 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 429.85 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.21 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1053657988924215e-17,-2.520737524963623e-17,-1.1346392575495301e-17)
    sum a = (5.447205186914772e-17,3.5409175591638585e-17,-6.323067069935462e-18)
    sum e = 2.5920008714061478
    sum de = -4.2012834183813297e-19
Info: CFL hydro = 0.008424277723430702 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008424277723430702 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5980e+04 |  512 |      1 | 3.204e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 791.488156379536 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.4166387324401466, dt = 0.008424277723430702 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.13 us    (1.0%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 405.99 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0081779161508209e-17,-2.442284655762572e-17,-1.1639127162066388e-17)
    sum a = (1.0618068924106438e-16,2.0468002293050346e-17,-9.896770902795282e-17)
    sum e = 2.5920009619420923
    sum de = -1.802486111757151e-18
Info: CFL hydro = 0.009349187478289802 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009349187478289802 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6212e+04 |  512 |      1 | 3.158e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 960.2873612419529 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.4250630101635773, dt = 0.009349187478289802 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.3%)
   patch tree reduce : 1502.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 385.89 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (75.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.82887513098396e-18,-2.4392109426035757e-17,-1.2950578109904853e-17)
    sum a = (-7.491663539527238e-17,-7.470586649294119e-17,-5.386316392907986e-17)
    sum e = 2.5920010401298685
    sum de = -5.55653613398821e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012027402538905536
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.60754913126305e-18,-2.4860484764549494e-17,-1.2690044327856587e-17)
    sum a = (1.154311021767107e-16,-4.156831129309424e-17,2.173261570703744e-17)
    sum e = 2.5920006875838353
    sum de = -8.131516293641283e-20
Info: CFL hydro = 0.004987729323372585 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004987729323372585 cfl multiplier : 0.44520547945205474       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.0438e+04 |  512 |      1 | 4.905e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 686.1672445367703 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.434412197641867, dt = 0.004987729323372585 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.1%)
   patch tree reduce : 1974.00 ns (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 398.41 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (75.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.138021506676197e-18,-2.4930741065326557e-17,-1.2277288560791355e-17)
    sum a = (-1.3616842028940646e-16,2.5620131016701464e-17,-5.981153072820433e-17)
    sum e = 2.5920007867240655
    sum de = 3.4423418976414766e-18
Info: CFL hydro = 0.007064683611516384 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007064683611516384 cfl multiplier : 0.6301369863013698        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6123e+04 |  512 |      1 | 3.176e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 565.4244610219496 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.4393999269652396, dt = 0.007064683611516384 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.3%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1353.00 ns (0.3%)
   LB compute        : 404.48 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.736352349354326e-18,-2.4771200715645313e-17,-1.2941796072307721e-17)
    sum a = (-5.324256660554916e-17,-5.704811623097328e-17,-8.744567570051487e-17)
    sum e = 2.592000894665974
    sum de = -2.710505431213761e-20
Info: CFL hydro = 0.008457466130882082 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008457466130882082 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5892e+04 |  512 |      1 | 3.222e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 789.4274498600478 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.446464610576756, dt = 0.008457466130882082 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.93 us    (0.9%)
   patch tree reduce : 1042.00 ns (0.3%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 661.00 ns  (0.2%)
   LB compute        : 399.75 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.806608650131388e-18,-2.5514746565535872e-17,-1.3710224362056822e-17)
    sum a = (8.571268694801404e-18,-5.056111779255801e-17,5.095923683029469e-17)
    sum e = 2.5920009940973023
    sum de = -7.318364664277155e-19
Info: CFL hydro = 0.009397068271807188 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009397068271807188 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6157e+04 |  512 |      1 | 3.169e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 960.776060722713 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.4549220767076383, dt = 0.009397068271807188 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (1.1%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 390.14 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.806608650131388e-18,-2.5933357024332524e-17,-1.2711999421849418e-17)
    sum a = (-2.88636302359091e-18,5.803170444185213e-17,-7.16614267926019e-18)
    sum e = 2.5920010772997646
    sum de = 8.267041565201971e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010180479379077269
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.666096048577266e-18,-2.533032377599609e-17,-1.3004734008420505e-17)
    sum a = (-6.817788521240598e-17,-8.102893356287666e-17,-6.304332056394912e-17)
    sum e = 2.5920006902367287
    sum de = 4.336808689942018e-19
Info: CFL hydro = 0.005007696832417313 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005007696832417313 cfl multiplier : 0.44520547945205474       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2257e+04 |  512 |      1 | 4.177e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 809.8850248107271 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.4643191449794455, dt = 0.005007696832417313 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.35 us    (1.0%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 406.89 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0585282650410477e-17,-2.6316839332740648e-17,-1.3455545271739976e-17)
    sum a = (-1.7134048086592246e-16,3.2294479590522227e-17,-4.613497084360318e-17)
    sum e = 2.592000799003358
    sum de = -4.0657581468206416e-19
Info: CFL hydro = 0.007087666372166063 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007087666372166063 cfl multiplier : 0.6301369863013698        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6242e+04 |  512 |      1 | 3.152e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 571.8850145083853 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.469326841811863, dt = 0.007087666372166063 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.23 us    (1.0%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 411.01 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 us    (72.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1709383462843448e-17,-2.6003613325109588e-17,-1.3714615380855389e-17)
    sum a = (8.160781620782098e-17,-8.345277593968525e-17,-1.3732764925222796e-16)
    sum e = 2.5920009129629915
    sum de = -6.505213034913027e-19
Info: CFL hydro = 0.00847027203229898 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00847027203229898 cfl multiplier : 0.7534246575342465         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6696e+04 |  512 |      1 | 3.067e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 832.03736400178 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 3.476414508184029, dt = 0.00847027203229898 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (1.0%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 421.87 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.22 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0216437071330909e-17,-2.699598357358557e-17,-1.5187436269541166e-17)
    sum a = (2.5535237986595848e-17,5.999888086360982e-17,-1.0810102812897072e-16)
    sum e = 2.5920010121746055
    sum de = -2.168404344971009e-19
Info: CFL hydro = 0.009375963428253871 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009375963428253871 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6346e+04 |  512 |      1 | 3.132e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 973.4867253448135 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.484884780216328, dt = 0.009375963428253871 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (1.2%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 359.70 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0175454229210957e-17,-2.5868955415286886e-17,-1.624274445412993e-17)
    sum a = (1.2007972741145955e-16,-6.003400901399836e-17,8.472909873713518e-17)
    sum e = 2.5920010861102387
    sum de = -1.6940658945086007e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010514835010970214
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.88271964263987e-18,-2.6331476062069204e-17,-1.5351962255149947e-17)
    sum a = (8.61342247526764e-17,-2.8980724070537535e-17,-3.381669944069188e-17)
    sum e = 2.5920006907982778
    sum de = 7.724940478959219e-19
Info: CFL hydro = 0.004987259344362184 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004987259344362184 cfl multiplier : 0.44520547945205474       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2530e+04 |  512 |      1 | 4.086e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 826.0658027480699 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.494260743644582, dt = 0.004987259344362184 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.45 us    (1.0%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 752.00 ns  (0.2%)
   LB compute        : 419.56 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.560711597411675e-18,-2.631976667860636e-17,-1.6046612281127303e-17)
    sum a = (1.5498539951419588e-16,-7.650911154621909e-17,1.0763265279045697e-16)
    sum e = 2.5920008017200273
    sum de = 2.846030702774449e-19
Info: CFL hydro = 0.007052881835020872 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007052881835020872 cfl multiplier : 0.6301369863013698        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6397e+04 |  512 |      1 | 3.123e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 574.9726411166831 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.4992480029889443, dt = 0.0007519970110556606 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.11 us    (1.0%)
   patch tree reduce : 1323.00 ns (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 391.58 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.478745913171771e-18,-2.6741304483268725e-17,-1.5578236942613566e-17)
    sum a = (-1.0085291976547061e-16,5.75399103364127e-17,-4.505770756502159e-17)
    sum e = 2.592000693296611
    sum de = 1.0842021724855044e-19
Info: CFL hydro = 0.00843226615172203 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00843226615172203 cfl multiplier : 0.7534246575342465         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6155e+04 |  512 |      1 | 3.169e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.42154176904633 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 473                                                     [SPH][rank=0]
Info: time since start : 725.075805745 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14973760109992248 max=0.1502940982079609 delta=0.0005564971080384284
Number of particle pairs: 130816
Distance min=0.146540 max=1.917854 mean=0.806717
---------------- t = 3.5, dt = 0.00843226615172203 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.41 us    (1.6%)
   patch tree reduce : 1823.00 ns (0.3%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.1%)
   LB compute        : 577.43 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.90 us    (77.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0239855838256595e-17,-2.5953848445392503e-17,-1.6107720626074018e-17)
    sum a = (1.599501781024415e-17,-1.0765607155738266e-16,-8.669627515889288e-17)
    sum e = 2.5920010052652187
    sum de = -1.3145951341386741e-18
Info: CFL hydro = 0.009335440110731584 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009335440110731584 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3402e+04 |  512 |      1 | 3.820e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 794.6199969074823 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.508432266151722, dt = 0.009335440110731584 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.28 us    (1.0%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 404.08 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.519728755291723e-18,-2.7604871513653427e-17,-1.7108872912147133e-17)
    sum a = (8.492815825600352e-17,9.840565862173633e-17,1.9484414082171496e-17)
    sum e = 2.592001067478577
    sum de = 7.318364664277155e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01086075540020737
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.37336146200618e-18,-2.6858398317897158e-17,-1.668367592515263e-17)
    sum a = (-1.1081760509235039e-16,-8.033807993856889e-17,-1.7002024788048687e-17)
    sum e = 2.592000690850309
    sum de = 3.5236570605778894e-19
Info: CFL hydro = 0.004966599010180865 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004966599010180865 cfl multiplier : 0.44520547945205474       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2009e+04 |  512 |      1 | 4.263e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 788.3005537320141 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.5177677062624535, dt = 0.004966599010180865 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (1.1%)
   patch tree reduce : 1894.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 402.88 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (72.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0977546996415732e-17,-2.791224282955307e-17,-1.688200360755454e-17)
    sum a = (-5.679050979479072e-17,-5.5022392891901364e-17,6.093563154063731e-17)
    sum e = 2.5920007967340064
    sum de = 6.2341624917916505e-19
Info: CFL hydro = 0.007024396132197902 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007024396132197902 cfl multiplier : 0.6301369863013698        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6145e+04 |  512 |      1 | 3.171e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 563.8095921163939 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.5227343052726345, dt = 0.007024396132197902 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 17.94 us   (4.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 390.11 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.097169230468431e-17,-2.818741334092989e-17,-1.6303852799076645e-17)
    sum a = (-1.3379141544644924e-16,-1.0778194742960822e-16,9.653215726768138e-17)
    sum e = 2.5920008955251372
    sum de = 8.673617379884035e-19
Info: CFL hydro = 0.00839137034118281 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00839137034118281 cfl multiplier : 0.7534246575342465         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6188e+04 |  512 |      1 | 3.163e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 799.5314727229605 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.5297587014048326, dt = 0.00839137034118281 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.1%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 427.97 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.40 us    (75.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2382673011956945e-17,-2.939347983760276e-17,-1.5271963381413568e-17)
    sum a = (1.372339741845252e-16,9.683586940124888e-17,-1.1072393002464764e-16)
    sum e = 2.592000971058121
    sum de = 5.285485590866834e-19
Info: CFL hydro = 0.00929953403144656 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00929953403144656 cfl multiplier : 0.8356164383561643         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6080e+04 |  512 |      1 | 3.184e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 948.7721047840095 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.5381500717460153, dt = 0.00929953403144656 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.2%)
   patch tree reduce : 1964.00 ns (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 381.06 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 20.24 us   (92.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0198872996136643e-17,-2.777173022799895e-17,-1.717620186705848e-17)
    sum a = (3.0912772341906703e-18,1.5029286409146135e-16,4.676727755059673e-17)
    sum e = 2.5920010168071888
    sum de = -7.318364664277155e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010387532615952535
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0594064688007609e-17,-2.7350192423336583e-17,-1.649120293448214e-17)
    sum a = (-8.325371642081691e-17,1.4309452060767836e-16,4.939017944627366e-17)
    sum e = 2.5920006893762464
    sum de = 1.179069862577986e-18
Info: CFL hydro = 0.004952894673241867 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004952894673241867 cfl multiplier : 0.44520547945205474       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2652e+04 |  512 |      1 | 4.047e-02 | 0.0% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 827.252365810932 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.547449605777462, dt = 0.004952894673241867 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (1.1%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 392.31 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1249790161926842e-17,-2.67617959043287e-17,-1.6088692877946897e-17)
    sum a = (-3.3254649034475393e-18,-5.23380167330445e-17,-5.7891191840298e-17)
    sum e = 2.5920007817548423
    sum de = -6.098637220230962e-19
Info: CFL hydro = 0.007009055625934054 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007009055625934054 cfl multiplier : 0.6301369863013698        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6081e+04 |  512 |      1 | 3.184e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 560.0362543043163 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.552402500450704, dt = 0.007009055625934054 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (0.9%)
   patch tree reduce : 661.00 ns  (0.2%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 401.00 ns  (0.1%)
   LB compute        : 382.11 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1287845658181083e-17,-2.744094014517362e-17,-1.687614891582312e-17)
    sum a = (-1.5503223704804724e-17,-1.1861605447860412e-17,9.226994168720637e-17)
    sum e = 2.5920008633542895
    sum de = 1.9922214919421144e-18
Info: CFL hydro = 0.008379933342763135 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008379933342763135 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6246e+04 |  512 |      1 | 3.152e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 800.623001789606 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.559411556076638, dt = 0.008379933342763135 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.55 us    (0.9%)
   patch tree reduce : 811.00 ns  (0.2%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 622.00 ns  (0.2%)
   LB compute        : 390.11 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1437140297332338e-17,-2.7496559716622125e-17,-1.5547133892790387e-17)
    sum a = (1.3161347012236035e-17,1.670343550974618e-17,-2.852405811548664e-17)
    sum e = 2.5920009226526415
    sum de = -6.098637220230962e-20
Info: CFL hydro = 0.009281335697952682 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009281335697952682 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6377e+04 |  512 |      1 | 3.126e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 964.9507212925607 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.567791489419401, dt = 0.009281335697952682 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.95 us    (1.0%)
   patch tree reduce : 1873.00 ns (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 371.90 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1296627695778216e-17,-2.7262372047365257e-17,-1.6258478938158127e-17)
    sum a = (-4.871103520542874e-17,-1.674441835186613e-17,1.0115736373550454e-16)
    sum e = 2.5920009554196066
    sum de = -2.710505431213761e-20
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010892755798792429
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1305409733375349e-17,-2.7397029957187955e-17,-1.5769612178584415e-17)
    sum a = (1.2119211884042968e-16,1.0910803510677524e-16,5.3055216470143664e-17)
    sum e = 2.5920006888268206
    sum de = -3.5914196963582334e-19
Info: CFL hydro = 0.0049387828873654095 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0049387828873654095 cfl multiplier : 0.44520547945205474      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2024e+04 |  512 |      1 | 4.258e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 784.6882247321078 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.577072825117354, dt = 0.0049387828873654095 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.61 us    (1.8%)
   patch tree reduce : 1704.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 407.38 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.923702484759822e-18,-2.6059232896558092e-17,-1.5567625313850362e-17)
    sum a = (-9.458839961284937e-17,-2.0350908458421913e-17,1.1441238581544333e-16)
    sum e = 2.592000763841266
    sum de = -2.574980159653073e-18
Info: CFL hydro = 0.006985778286121638 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006985778286121638 cfl multiplier : 0.6301369863013698        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6495e+04 |  512 |      1 | 3.104e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 572.8125410917401 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.582011608004719, dt = 0.006985778286121638 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.95 us    (1.0%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 398.41 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 2.72 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1331755846166746e-17,-2.67617959043287e-17,-1.4750895817317033e-17)
    sum a = (-1.8114416217018814e-16,8.871028911450196e-17,-6.333605515052021e-17)
    sum e = 2.5920008292636973
    sum de = -1.4907779871675686e-19
Info: CFL hydro = 0.008346722594799062 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008346722594799062 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5790e+04 |  512 |      1 | 3.243e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 775.5746142192235 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.5889973862908406, dt = 0.008346722594799062 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.74 us    (1.0%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 662.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 377.26 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3035471140010468e-17,-2.557329348285009e-17,-1.585157786282432e-17)
    sum a = (1.760154522134627e-16,-1.104194860546137e-17,-1.992937065375955e-17)
    sum e = 2.5920008776787875
    sum de = 3.0831999280056532e-18
Info: CFL hydro = 0.009252454554208856 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009252454554208856 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6260e+04 |  512 |      1 | 3.149e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 954.267292303649 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.5973441088856397, dt = 0.009252454554208856 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.29 us    (1.0%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1173.00 ns (0.3%)
   LB compute        : 401.87 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.34 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0064215086313943e-17,-2.6094361046946623e-17,-1.5945252930527064e-17)
    sum a = (-4.1310704856911684e-17,1.2852219288816967e-16,5.088824869305119e-18)
    sum e = 2.592000908676329
    sum de = -1.179069862577986e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011004390245579393
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0989256379878576e-17,-2.533032377599609e-17,-1.5667155073284532e-17)
    sum a = (1.1737485983154273e-16,1.015203546228527e-16,-1.0657258766883643e-16)
    sum e = 2.5920006904670583
    sum de = -1.3484764520288461e-18
Info: CFL hydro = 0.004929690922631038 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004929690922631038 cfl multiplier : 0.44520547945205474       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2317e+04 |  512 |      1 | 4.157e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 801.2966591221677 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.6065965634398487, dt = 0.004929690922631038 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.95 us    (1.0%)
   patch tree reduce : 1963.00 ns (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 371.25 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.455327146246083e-18,-2.5093208760873508e-17,-1.6896640336883095e-17)
    sum a = (1.0852256593363307e-16,1.1674255312454917e-16,-7.871633032896507e-18)
    sum e = 2.5920007517584382
    sum de = 4.0996394647108136e-19
Info: CFL hydro = 0.006977635875386932 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006977635875386932 cfl multiplier : 0.6301369863013698        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5471e+04 |  512 |      1 | 3.309e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 536.2572361788236 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.6115262543624795, dt = 0.006977635875386932 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (0.7%)
   patch tree reduce : 2.18 us    (0.3%)
   gen split merge   : 752.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.1%)
   LB compute        : 739.68 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (73.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.10111829649507e-18,-2.4358444948580083e-17,-1.6720999584940442e-17)
    sum a = (1.481471195718953e-16,-1.8002006135775517e-16,8.2199871909161e-18)
    sum e = 2.5920008101224137
    sum de = 9.24959978401696e-19
Info: CFL hydro = 0.008345040824831151 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008345040824831151 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5259e+04 |  512 |      1 | 3.355e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 748.6279043789887 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.6185038902378666, dt = 0.008345040824831151 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.1%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1213.00 ns (0.3%)
   LB compute        : 406.41 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 22.47 us   (92.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.799913059186592e-18,-2.6644702069700265e-17,-1.6592196366849166e-17)
    sum a = (-1.2060664966728752e-16,-4.847684753617187e-18,-6.196605728536752e-17)
    sum e = 2.5920008598977304
    sum de = 1.3857459017080354e-18
Info: CFL hydro = 0.009261301895004606 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009261301895004606 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5440e+04 |  512 |      1 | 3.316e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 905.9430796411245 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.626848931062698, dt = 0.009261301895004606 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 390.73 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.892965353169858e-18,-2.6073869625886648e-17,-1.735330629193399e-17)
    sum a = (1.0421351281930669e-16,-6.73757924452012e-17,-4.8617360137725995e-17)
    sum e = 2.592000901710431
    sum de = -7.813878938420921e-20
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010410315754357104
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.78057392419973e-18,-2.6331476062069204e-17,-1.722450307384271e-17)
    sum a = (2.988234659717648e-17,-3.444900614768542e-17,8.121628369828215e-17)
    sum e = 2.5920006945929948
    sum de = 1.4823076576950256e-18
Info: CFL hydro = 0.0049406832322667245 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0049406832322667245 cfl multiplier : 0.44520547945205474      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.0886e+04 |  512 |      1 | 4.703e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 708.8624353429697 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.6361102329577024, dt = 0.0049406832322667245 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.2%)
   patch tree reduce : 1804.00 ns (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 396.57 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.178692961936408e-18,-2.6385631960584854e-17,-1.643704703596649e-17)
    sum a = (1.9484414082171496e-17,-6.760998011445807e-17,1.8664757239772455e-17)
    sum e = 2.5920007525797963
    sum de = 6.191810844428935e-19
Info: CFL hydro = 0.006997932223376892 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006997932223376892 cfl multiplier : 0.6301369863013698        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5640e+04 |  512 |      1 | 3.274e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 543.3377031846052 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.641050916189969, dt = 0.006997932223376892 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.44 us    (1.0%)
   patch tree reduce : 1894.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 416.11 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.951091820877389e-18,-2.6899381160017112e-17,-1.629360708854666e-17)
    sum a = (9.86632650579189e-17,-6.606434149736273e-17,3.03741407026159e-17)
    sum e = 2.592000816921493
    sum de = -2.473336205982557e-19
Info: CFL hydro = 0.008377259558125339 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008377259558125339 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6436e+04 |  512 |      1 | 3.115e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 808.7205840609868 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.648048848413346, dt = 0.008377259558125339 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.43 us    (1.1%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 386.94 us  (95.6%)
   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.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.893954045122553e-18,-2.7582916419660597e-17,-1.610332960727545e-17)
    sum a = (5.011616122096995e-18,9.009199636311749e-17,-3.37698619068405e-17)
    sum e = 2.5920008804197576
    sum de = -4.54009659728305e-19
Info: CFL hydro = 0.009307427869446655 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009307427869446655 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6020e+04 |  512 |      1 | 3.196e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 943.6249174707731 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.6564261079714715, dt = 0.009307427869446655 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (1.1%)
   patch tree reduce : 1834.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 396.85 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.168941597382767e-18,-2.5986049249915322e-17,-1.6562922908192056e-17)
    sum a = (-9.248071058953756e-17,-2.09129588646384e-17,2.8383545513932515e-17)
    sum e = 2.592000942443281
    sum de = -1.4704491964334654e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011694080490998656
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.563584411903912e-18,-2.640319603577912e-17,-1.6328735238935187e-17)
    sum a = (8.00687641189235e-17,-5.091239929644331e-17,8.212961560838394e-17)
    sum e = 2.592000700512808
    sum de = 3.1170812458958252e-19
Info: CFL hydro = 0.004967720831290796 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004967720831290796 cfl multiplier : 0.44520547945205474       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2475e+04 |  512 |      1 | 4.104e-02 | 0.0% |   2.0% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 816.3997039820439 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.665733535840918, dt = 0.004967720831290796 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1974.00 ns (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 399.41 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.2614643790124e-18,-2.6938900329204207e-17,-1.5721310971800184e-17)
    sum a = (-3.433191231305699e-17,8.285559738308023e-17,1.538612987017629e-17)
    sum e = 2.5920007681665953
    sum de = 1.5246593050577406e-18
Info: CFL hydro = 0.007030853016878843 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007030853016878843 cfl multiplier : 0.6301369863013698        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6185e+04 |  512 |      1 | 3.163e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 565.3219377692668 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.670701256672209, dt = 0.007030853016878843 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1924.00 ns (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 388.88 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.122104063531393e-18,-2.60885063552152e-17,-1.5791567272577245e-17)
    sum a = (6.421425891023347e-17,-4.44956571588051e-17,-3.2552086026704786e-17)
    sum e = 2.5920008500352214
    sum de = -5.149960319306146e-19
Info: CFL hydro = 0.008407162795494515 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008407162795494515 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5813e+04 |  512 |      1 | 3.238e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 781.712121743897 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.677732109689088, dt = 0.008407162795494515 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.3%)
   patch tree reduce : 1873.00 ns (0.5%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 390.70 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.221762250708696e-18,-2.6731058772738736e-17,-1.6192613656179634e-17)
    sum a = (-9.063062800240829e-18,-5.721204759945309e-17,-5.152128723651117e-19)
    sum e = 2.592000934141283
    sum de = -6.776263578034403e-19
Info: CFL hydro = 0.009327428790406309 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009327428790406309 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6350e+04 |  512 |      1 | 3.132e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 966.4679015584286 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.6861392724845823, dt = 0.009327428790406309 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 22.14 us   (5.1%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 396.91 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.735511450140952e-18,-2.7474604622629295e-17,-1.6005263520774138e-17)
    sum a = (4.812556603228657e-17,8.318346012003985e-17,-7.025630077706068e-18)
    sum e = 2.592001016316706
    sum de = 2.371692252312041e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012238762535339955
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.29421406088504e-18,-2.664982492496526e-17,-1.624091486296386e-17)
    sum a = (7.042023214554049e-17,5.519803364384401e-17,-7.170826432645327e-17)
    sum e = 2.5920007065498867
    sum de = 7.724940478959219e-19
Info: CFL hydro = 0.0049734871145766186 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0049734871145766186 cfl multiplier : 0.44520547945205474      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2379e+04 |  512 |      1 | 4.136e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 811.8321012662494 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.6954667012749884, dt = 0.0049734871145766186 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (1.1%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.2%)
   LB compute        : 406.41 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.9180501171411944e-18,-2.6635188195636704e-17,-1.6775155483456095e-17)
    sum a = (-1.735330629193399e-17,-4.402728182029136e-18,3.868780296123475e-17)
    sum e = 2.5920007931795763
    sum de = 9.283481101907132e-19
Info: CFL hydro = 0.0070424931734824345 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0070424931734824345 cfl multiplier : 0.6301369863013698       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5656e+04 |  512 |      1 | 3.270e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 547.502026235368 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.7004401883895652, dt = 0.0070424931734824345 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.2%)
   patch tree reduce : 1984.00 ns (0.4%)
   gen split merge   : 1122.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 461.23 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (75.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.319096500743582e-18,-2.6818879148710062e-17,-1.6284825050949524e-17)
    sum a = (-2.518220007519112e-16,6.109956290911711e-17,3.9577716104410856e-17)
    sum e = 2.592000897174836
    sum de = 1.1519648082658485e-19
Info: CFL hydro = 0.00842688811170225 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00842688811170225 cfl multiplier : 0.7534246575342465         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6573e+04 |  512 |      1 | 3.089e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 820.6651347829369 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.7074826815630475, dt = 0.00842688811170225 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (1.2%)
   patch tree reduce : 1864.00 ns (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 376.08 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0018841225395425e-17,-2.608265166348378e-17,-1.5966476188053468e-17)
    sum a = (2.4706799106599675e-17,6.611117903121411e-17,9.461181837977505e-18)
    sum e = 2.5920010009858094
    sum de = -5.285485590866834e-19
Info: CFL hydro = 0.009356831502298286 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009356831502298286 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6269e+04 |  512 |      1 | 3.147e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 963.9888388598837 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.71590956967475, dt = 0.009356831502298286 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.3%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 393.62 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.754227811408332e-18,-2.5538531250694774e-17,-1.5973611593601138e-17)
    sum a = (-1.3287808353634745e-16,-5.1732056138842353e-17,5.854691731421724e-18)
    sum e = 2.5920010963425195
    sum de = -1.3349239248727773e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012153442150466253
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.503628353030314e-18,-2.6043898635597476e-17,-1.599501781024415e-17)
    sum a = (4.489377619654178e-17,-1.883571423832997e-16,8.383918559395908e-17)
    sum e = 2.5920007108285934
    sum de = 1.531435568635775e-18
Info: CFL hydro = 0.004993348018086126 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004993348018086126 cfl multiplier : 0.44520547945205474       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1139e+04 |  512 |      1 | 4.596e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 732.8347706932395 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.7252664011770484, dt = 0.004993348018086126 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.3%)
   patch tree reduce : 2.09 us    (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 446.02 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.423437728583005e-18,-2.754815418750528e-17,-1.5227321356961476e-17)
    sum a = (1.1123914289701275e-16,-2.686132566376287e-17,8.454174860172969e-17)
    sum e = 2.592000819251316
    sum de = -9.486769009248164e-20
Info: CFL hydro = 0.007073756111887324 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007073756111887324 cfl multiplier : 0.6301369863013698        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6110e+04 |  512 |      1 | 3.178e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 565.6056536080209 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.7302597491951346, dt = 0.007073756111887324 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.2%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 416.17 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.406185040248481e-18,-2.7405446076551875e-17,-1.4503535091664466e-17)
    sum a = (7.359347506397107e-17,1.5428283650642527e-16,-2.5245430745890472e-17)
    sum e = 2.592000941508266
    sum de = 5.421010862427522e-20
Info: CFL hydro = 0.008467089854894326 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008467089854894326 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6198e+04 |  512 |      1 | 3.161e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 805.6575776748988 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.737333505307022, dt = 0.008467089854894326 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 433.01 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.009529675444659e-18,-2.5583539193380078e-17,-1.5250008287420735e-17)
    sum a = (6.81837399041374e-17,-6.20128948192189e-17,-9.447130577822093e-17)
    sum e = 2.5920010555136077
    sum de = 2.710505431213761e-19
Info: CFL hydro = 0.009397731717937272 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009397731717937272 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5809e+04 |  512 |      1 | 3.239e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 941.2008733098429 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.745800595161916, dt = 0.009397731717937272 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (1.1%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 410.49 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.432842539899619e-18,-2.7042821107436942e-17,-1.6400455212645102e-17)
    sum a = (2.4149432453768325e-16,4.6369158512860054e-18,-1.481471195718953e-16)
    sum e = 2.59200114927171
    sum de = 3.9302328752599536e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010775208788708232
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.624895080963421e-18,-2.6650556761431687e-17,-1.6666843686424793e-17)
    sum a = (1.0749214018890286e-17,2.7727820040013285e-17,-9.826514602018222e-17)
    sum e = 2.5920007121612345
    sum de = 3.5236570605778894e-19
Info: CFL hydro = 0.005013273854341513 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005013273854341513 cfl multiplier : 0.44520547945205474       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2477e+04 |  512 |      1 | 4.104e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 824.4623753628559 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.7551983268798534, dt = 0.005013273854341513 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.2%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 388.83 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.702158359545018e-18,-2.6390754815849847e-17,-1.6944941543667325e-17)
    sum a = (-6.537348787305496e-17,1.4779583806801e-16,-1.3208184546087409e-17)
    sum e = 2.592000835460688
    sum de = -1.111307226797642e-18
Info: CFL hydro = 0.007097921783438669 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007097921783438669 cfl multiplier : 0.6301369863013698        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5726e+04 |  512 |      1 | 3.256e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 554.3266316787683 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.760211600734195, dt = 0.007097921783438669 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.2%)
   patch tree reduce : 1833.00 ns (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 384.03 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.297873243217178e-18,-2.5103454471403497e-17,-1.6750273043597552e-17)
    sum a = (-8.045517377319733e-17,-1.1201196220556041e-16,2.248201624865942e-18)
    sum e = 2.5920009628419414
    sum de = -2.574980159653073e-19
Info: CFL hydro = 0.008490410787990725 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008490410787990725 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6946e+04 |  512 |      1 | 3.021e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 845.7308148367409 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.7673095225176336, dt = 0.008490410787990725 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.2%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 404.26 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.076547243496268e-18,-2.6952073385599906e-17,-1.6630251863103407e-17)
    sum a = (4.964778588245622e-18,2.5479618415147344e-17,-6.323067069935462e-17)
    sum e = 2.5920010710946237
    sum de = 9.0801931945661e-19
Info: CFL hydro = 0.009418104736525601 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009418104736525601 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6041e+04 |  512 |      1 | 3.192e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 957.640549658786 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.7757999333056245, dt = 0.009418104736525601 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.3%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 387.01 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.625735980176795e-18,-2.61148524680066e-17,-1.7543583773205197e-17)
    sum a = (1.862084705178679e-17,-2.646320662602619e-17,-4.1217029789208935e-18)
    sum e = 2.5920011478223244
    sum de = -1.3417001884508117e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011153403578249692
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.494005416219807e-18,-2.6208527535709347e-17,-1.7370870367128254e-17)
    sum a = (-8.515941857939468e-17,-6.6040922730437045e-18,-7.887440700571346e-17)
    sum e = 2.592000710506357
    sum de = 0
Info: CFL hydro = 0.005016427798341049 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005016427798341049 cfl multiplier : 0.44520547945205474       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1795e+04 |  512 |      1 | 4.341e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 781.0626762721669 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.7852180380421503, dt = 0.005016427798341049 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 414.04 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.45 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.325371642081691e-18,-2.6404659708711974e-17,-1.7956339540270427e-17)
    sum a = (-7.991507846097368e-17,2.587773745288402e-17,-3.601806353170644e-17)
    sum e = 2.59200083389217
    sum de = -5.421010862427522e-20
Info: CFL hydro = 0.007099206202839881 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007099206202839881 cfl multiplier : 0.6301369863013698        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5636e+04 |  512 |      1 | 3.274e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 551.5095031208732 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.7902344658404914, dt = 0.007099206202839881 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.1%)
   patch tree reduce : 1864.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 406.91 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 20.35 us   (4.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.964996713739515e-18,-2.596994884765391e-17,-1.8079288066630285e-17)
    sum a = (1.7172158470581468e-16,3.2036873154339673e-17,-2.71657696337968e-17)
    sum e = 2.592000949733131
    sum de = -1.666960840196463e-18
Info: CFL hydro = 0.008485779227261172 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008485779227261172 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6126e+04 |  512 |      1 | 3.175e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 804.9373223620613 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.7973336720433313, dt = 0.008485779227261172 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.00 us    (1.0%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 392.09 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.5162718970723784e-18,-2.5766498309987007e-17,-1.8328112465215706e-17)
    sum a = (-4.790601509235826e-17,-9.742207041085748e-18,-3.0678584672649833e-18)
    sum e = 2.592001037990014
    sum de = -2.1412992906588713e-18
Info: CFL hydro = 0.009402270320535696 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009402270320535696 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6238e+04 |  512 |      1 | 3.153e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 968.8774317717965 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.8058194512705925, dt = 0.009402270320535696 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.2%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 400.39 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.952135044203557e-18,-2.6062160242423804e-17,-1.8287129623095756e-17)
    sum a = (-4.951898266436494e-17,-1.6824042159413465e-16,1.1404939492809517e-17)
    sum e = 2.5920010888237304
    sum de = 2.459783678826488e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011177388870628645
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.032637055510605e-18,-2.6852543626165736e-17,-1.820809128472156e-17)
    sum a = (-1.3843418598946665e-17,-1.1107521152853295e-16,6.098246907448867e-17)
    sum e = 2.5920007073325486
    sum de = 2.1006417091906648e-19
Info: CFL hydro = 0.005006195983379423 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005006195983379423 cfl multiplier : 0.44520547945205474       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2074e+04 |  512 |      1 | 4.240e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 798.2217996288292 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.8152217215911284, dt = 0.005006195983379423 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.1%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 411.56 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.842359574239399e-18,-2.713356882927398e-17,-1.769873310408787e-17)
    sum a = (-9.718788274160062e-18,-1.622686360280845e-16,-8.550191804568285e-17)
    sum e = 2.592000815162975
    sum de = 4.472333961502706e-19
Info: CFL hydro = 0.00708178301922146 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00708178301922146 cfl multiplier : 0.6301369863013698         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6170e+04 |  512 |      1 | 3.166e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 569.1902479095727 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.820227917574508, dt = 0.00708178301922146 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.2%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 405.60 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.039955420174883e-18,-2.8377690822201096e-17,-1.864133847284677e-17)
    sum a = (-1.5678864456747376e-17,-2.9765252762548045e-17,-1.8126125600481657e-17)
    sum e = 2.5920009073279755
    sum de = -1.8092623753351855e-18
Info: CFL hydro = 0.008455730784281279 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008455730784281279 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5510e+04 |  512 |      1 | 3.301e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 772.3031236987366 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.8273097005937293, dt = 0.008455730784281279 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.3%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 405.62 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.03117338257775e-18,-2.8204977416124153e-17,-1.8594500938995394e-17)
    sum a = (-1.343476111609343e-16,4.8418300618857655e-17,2.784491387464172e-17)
    sum e = 2.5920009698181734
    sum de = 1.9651164376299768e-18
Info: CFL hydro = 0.009365822430764344 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009365822430764344 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5996e+04 |  512 |      1 | 3.201e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 951.0327871885354 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.8357654313780105, dt = 0.009365822430764344 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.2%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 414.35 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.84759149225134e-18,-2.7502414408353547e-17,-1.8190527209527295e-17)
    sum a = (5.506923042575273e-17,-4.736445610720175e-17,-2.3008938504487375e-17)
    sum e = 2.5920009983881935
    sum de = 2.710505431213761e-20
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011727056844899482
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.771791886602598e-18,-2.7839059182910295e-17,-1.8383732036664213e-17)
    sum a = (-1.629360708854666e-17,2.0772446263084275e-17,2.384030473034926e-17)
    sum e = 2.5920007048502365
    sum de = -1.5449880957918438e-18
Info: CFL hydro = 0.004985802001348095 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004985802001348095 cfl multiplier : 0.44520547945205474       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2008e+04 |  512 |      1 | 4.264e-02 | 0.1% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 790.7577497844541 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.8451312538087747, dt = 0.004985802001348095 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.2%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 417.30 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.428981033454686e-18,-2.7461431566233597e-17,-1.796804892373327e-17)
    sum a = (-2.3149451106041496e-17,4.3055402992875356e-17,-5.365239502674868e-17)
    sum e = 2.5920007878415556
    sum de = -1.2874900798265365e-18
Info: CFL hydro = 0.007053859099502205 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007053859099502205 cfl multiplier : 0.6301369863013698        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6160e+04 |  512 |      1 | 3.168e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 566.5019060689543 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.8501170558101228, dt = 0.007053859099502205 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.1%)
   patch tree reduce : 2.16 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 993.00 ns  (0.2%)
   LB compute        : 412.47 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.499237334231747e-18,-2.7142350866871112e-17,-1.8535954021681178e-17)
    sum a = (1.5921248694428235e-16,-1.1175435576937786e-16,-1.8149544367407343e-19)
    sum e = 2.592000854382993
    sum de = -6.030874584450618e-19
Info: CFL hydro = 0.00842499736274062 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00842499736274062 cfl multiplier : 0.7534246575342465         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6268e+04 |  512 |      1 | 3.147e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 806.8547021903664 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.857170914909625, dt = 0.00842499736274062 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.2%)
   patch tree reduce : 2.18 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 418.39 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.382766273322793e-18,-2.860602379972654e-17,-1.841300549532132e-17)
    sum a = (5.168521860499098e-17,4.934334191242229e-17,1.8427642224649876e-17)
    sum e = 2.5920008970617916
    sum de = -4.404571325722362e-20
Info: CFL hydro = 0.009332005733822684 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009332005733822684 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5905e+04 |  512 |      1 | 3.219e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 942.1830131235366 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.8655959122723655, dt = 0.009332005733822684 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (0.8%)
   patch tree reduce : 1803.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 678.18 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.416430750778469e-18,-2.7426303415845065e-17,-1.8085142758361707e-17)
    sum a = (-3.793840241961277e-18,-1.4808271796284965e-16,9.592326932761352e-17)
    sum e = 2.59200091568608
    sum de = 5.878408653944844e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011344235510883448
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.695992280953857e-18,-2.836305409287254e-17,-1.7786553480059197e-17)
    sum a = (1.9648345450651304e-17,-2.951935570982833e-17,1.0711158522636043e-17)
    sum e = 2.5920007047936884
    sum de = 3.110304982317791e-18
Info: CFL hydro = 0.0049677371861952535 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0049677371861952535 cfl multiplier : 0.44520547945205474      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.0907e+04 |  512 |      1 | 4.694e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 715.6443980645042 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.8749279180061884, dt = 0.0049677371861952535 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 2.10 us    (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 387.69 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.63 us    (76.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.436922171838445e-18,-2.788296937089596e-17,-1.810856152528739e-17)
    sum a = (-8.833558884369097e-17,6.167332269879644e-17,-1.1401426677770665e-16)
    sum e = 2.5920007642101512
    sum de = 2.3310346708438345e-18
Info: CFL hydro = 0.00702693531815267 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00702693531815267 cfl multiplier : 0.6301369863013698         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5723e+04 |  512 |      1 | 3.256e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 549.1794076768228 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.8798956551923838, dt = 0.00702693531815267 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.4%)
   patch tree reduce : 1934.00 ns (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 404.97 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (73.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.363427138335932e-18,-2.729750019775379e-17,-1.9267790488108893e-17)
    sum a = (-1.035694967288503e-16,1.152671708082309e-16,-1.7599203344653704e-17)
    sum e = 2.592000813431672
    sum de = 3.7460032092321432e-19
Info: CFL hydro = 0.008396285594529292 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008396285594529292 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5743e+04 |  512 |      1 | 3.252e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 777.8408676821876 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.8869225905105362, dt = 0.008396285594529292 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.0%)
   patch tree reduce : 2.23 us    (0.4%)
   gen split merge   : 781.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 567.22 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.54 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.016225266389455e-18,-2.6202672843977925e-17,-1.9133132578286195e-17)
    sum a = (-1.4343994741983225e-17,4.7215161468050493e-17,3.670891715601421e-17)
    sum e = 2.592000849074802
    sum de = 1.2146452463626667e-18
Info: CFL hydro = 0.009307984273500772 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009307984273500772 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5857e+04 |  512 |      1 | 3.229e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 936.1637644976531 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.8953188761050654, dt = 0.009307984273500772 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.3%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 413.73 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.35 us    (74.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.06599014610654e-18,-2.6006540670975297e-17,-1.8395441420127057e-17)
    sum a = (-5.37109419440629e-17,6.069851652551473e-17,3.6790882840254115e-17)
    sum e = 2.592000873223717
    sum de = 3.588031564569216e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010305512811950163
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.250412935646323e-18,-2.6056305550692382e-17,-1.8448133645709852e-17)
    sum a = (6.577160691079164e-17,-3.4103579335531543e-17,7.479954156064394e-17)
    sum e = 2.592000707768264
    sum de = -3.6761229910836635e-19
Info: CFL hydro = 0.0049596676719325695 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0049596676719325695 cfl multiplier : 0.44520547945205474      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2091e+04 |  512 |      1 | 4.235e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 791.2970819549039 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.904626860378566, dt = 0.0049596676719325695 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.1%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 428.44 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.451247514307258e-18,-2.6612501265177445e-17,-1.7921211389881898e-17)
    sum a = (-4.367014562467464e-17,-1.0673468944615017e-16,-7.38159533497651e-17)
    sum e = 2.5920007540423726
    sum de = -2.846030702774449e-18
Info: CFL hydro = 0.007020389667170941 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007020389667170941 cfl multiplier : 0.6301369863013698        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5988e+04 |  512 |      1 | 3.202e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 557.5417561823958 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.909586528050499, dt = 0.007020389667170941 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (1.1%)
   patch tree reduce : 962.00 ns  (0.2%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 761.00 ns  (0.2%)
   LB compute        : 394.33 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.849366552043935e-18,-2.7394102611322246e-17,-1.888430817970077e-17)
    sum a = (-1.2824702237679285e-16,-3.99538800481547e-17,3.0912772341906703e-18)
    sum e = 2.592000800672485
    sum de = 1.060485249962384e-18
Info: CFL hydro = 0.008396749330065975 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008396749330065975 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6175e+04 |  512 |      1 | 3.165e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 798.4244566221162 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.9166069177176697, dt = 0.008396749330065975 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.3%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 390.90 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0422814954863524e-17,-2.75433972504735e-17,-1.8465697720904118e-17)
    sum a = (-7.218834904842985e-18,-7.939547456981e-17,9.463523714670075e-17)
    sum e = 2.592000844173003
    sum de = 1.1011428314305904e-18
Info: CFL hydro = 0.009319490230665898 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009319490230665898 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6239e+04 |  512 |      1 | 3.153e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 958.7470258927184 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.9250036670477355, dt = 0.009319490230665898 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.84 us    (1.0%)
   patch tree reduce : 1363.00 ns (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 732.00 ns  (0.2%)
   LB compute        : 369.26 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.936875541155521e-18,-2.852405811548664e-17,-1.7180592885857048e-17)
    sum a = (-6.354682405285139e-17,9.216455723604078e-17,3.6697207772551364e-17)
    sum e = 2.5920008860933557
    sum de = -1.0977546996415732e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010569652583886337
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0092024872038196e-17,-2.7663418430967646e-17,-1.7479182164159555e-17)
    sum a = (-5.725303044157304e-17,4.5438262527564e-17,7.728193085476676e-19)
    sum e = 2.5920007131381406
    sum de = -1.1316360175317453e-18
Info: CFL hydro = 0.004972200043149039 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004972200043149039 cfl multiplier : 0.44520547945205474       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1833e+04 |  512 |      1 | 4.327e-02 | 0.0% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 775.3721931265205 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.9343231572784014, dt = 0.004972200043149039 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.2%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 400.97 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0500389620304862e-17,-2.7801003686656054e-17,-1.7701660449953583e-17)
    sum a = (6.872822623515961e-17,3.3342469410446715e-17,7.114621392023679e-17)
    sum e = 2.5920007612868514
    sum de = 1.0842021724855044e-19
Info: CFL hydro = 0.00704294033542647 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00704294033542647 cfl multiplier : 0.6301369863013698         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6256e+04 |  512 |      1 | 3.150e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 568.313659338019 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.9392953573215506, dt = 0.00704294033542647 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.1%)
   patch tree reduce : 1894.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 397.28 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 us    (72.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.548270377482404e-18,-2.7461431566233597e-17,-1.7075208434691456e-17)
    sum a = (-8.419632178957581e-17,3.942549411939389e-17,2.4496030204268494e-17)
    sum e = 2.5920008202411378
    sum de = 9.147955830346444e-19
Info: CFL hydro = 0.008423976785868148 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008423976785868148 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6033e+04 |  512 |      1 | 3.194e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 793.9402783541376 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.946338297656977, dt = 0.008423976785868148 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.2%)
   patch tree reduce : 1964.00 ns (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 391.17 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0796783389208087e-17,-2.723602593457386e-17,-1.712497331440854e-17)
    sum a = (-6.3763447646914e-17,9.229336045413205e-17,-1.6158949178723957e-17)
    sum e = 2.5920008825454715
    sum de = -1.1180834903756764e-18
Info: CFL hydro = 0.009346488297840851 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009346488297840851 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6031e+04 |  512 |      1 | 3.194e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 949.5468088604491 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.9547622744428454, dt = 0.009346488297840851 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.1%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 821.00 ns  (0.2%)
   LB compute        : 423.91 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (73.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0976815159949305e-17,-2.6217309573306478e-17,-1.7376725058859676e-17)
    sum a = (9.408782346981282e-17,-5.921435217159931e-17,3.381669944069188e-17)
    sum e = 2.592000946681602
    sum de = -6.776263578034403e-20
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01019808336669771
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0540640625958385e-17,-2.665641145316311e-17,-1.711619127681141e-17)
    sum a = (4.313151398538384e-17,1.2142630650968655e-17,2.4870730475079483e-17)
    sum e = 2.5920007194004984
    sum de = -5.624298769768554e-19
Info: CFL hydro = 0.004984197619911392 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004984197619911392 cfl multiplier : 0.44520547945205474       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1864e+04 |  512 |      1 | 4.316e-02 | 0.0% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 779.6671376062307 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.964108762740686, dt = 0.004984197619911392 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.2%)
   patch tree reduce : 2.35 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 423.94 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0405982716135687e-17,-2.6310984641009226e-17,-1.7171810848259917e-17)
    sum a = (1.0807760936204502e-17,2.2692785150990602e-17,1.8500825871292646e-17)
    sum e = 2.5920007826755334
    sum de = 9.012430558785756e-19
Info: CFL hydro = 0.007058057253058237 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007058057253058237 cfl multiplier : 0.6301369863013698        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6334e+04 |  512 |      1 | 3.135e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 572.4200108115987 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.9690929603605976, dt = 0.007058057253058237 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.01 us    (1.0%)
   patch tree reduce : 942.00 ns  (0.2%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 712.00 ns  (0.2%)
   LB compute        : 405.58 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0384759458609283e-17,-2.6267074453023563e-17,-1.7053253340698626e-17)
    sum a = (-1.268111592296617e-16,7.351150937973117e-17,-4.5947620708197687e-17)
    sum e = 2.592000862772742
    sum de = -2.7985968577282083e-18
Info: CFL hydro = 0.008445332114796703 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008445332114796703 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6317e+04 |  512 |      1 | 3.138e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 809.7393468187981 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.9761510176136556, dt = 0.008445332114796703 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.38 us    (1.0%)
   patch tree reduce : 1192.00 ns (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 411.70 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1977235609555992e-17,-2.5523528603133007e-17,-1.7634331495042232e-17)
    sum a = (-1.3028884611812618e-17,6.855844017494839e-17,-4.472984482806197e-17)
    sum e = 2.5920009466937426
    sum de = 2.290377089375628e-18
Info: CFL hydro = 0.009372248445366483 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009372248445366483 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6683e+04 |  512 |      1 | 3.069e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 990.6510814074217 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.9845963497284522, dt = 0.009372248445366483 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.44 us    (0.9%)
   patch tree reduce : 651.00 ns  (0.2%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 661.00 ns  (0.2%)
   LB compute        : 384.17 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.87 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1668400620723496e-17,-2.498782430970792e-17,-1.8101243160623115e-17)
    sum a = (-1.7395752806986798e-18,9.717617335813778e-17,1.2130921267505813e-17)
    sum e = 2.592001028540287
    sum de = -9.893344823930228e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010490800317788528
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.165083654552923e-17,-2.4630688114091192e-17,-1.7773380423663498e-17)
    sum a = (1.9324141896023826e-17,-1.800903176585322e-17,-3.854729035968063e-17)
    sum e = 2.5920007246180123
    sum de = 2.608861477543245e-18
Info: CFL hydro = 0.0049976099183348015 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0049976099183348015 cfl multiplier : 0.44520547945205474      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2188e+04 |  512 |      1 | 4.201e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 803.1582551623624 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.9939685981738187, dt = 0.0049976099183348015 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.68 us    (0.9%)
   patch tree reduce : 1132.00 ns (0.3%)
   gen split merge   : 702.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 491.00 ns  (0.1%)
   LB compute        : 415.27 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1465681919523019e-17,-2.54679090316845e-17,-1.8248342290375086e-17)
    sum a = (3.9820685811264856e-17,6.619314471545401e-17,4.2668993338601526e-17)
    sum e = 2.5920008096337
    sum de = 2.846030702774449e-19
Info: CFL hydro = 0.0070762458029472895 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0070762458029472895 cfl multiplier : 0.6301369863013698       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6190e+04 |  512 |      1 | 3.162e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 568.9103185149527 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.9989662080921535, dt = 0.0010337919078464708 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.36 us    (1.0%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 415.89 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1268086073587535e-17,-2.513711894885917e-17,-1.7928529754546175e-17)
    sum a = (1.152437520413052e-16,-1.3808875917731278e-16,-6.229392002232714e-17)
    sum e = 2.5920007225712096
    sum de = -2.642742795433417e-19
Info: CFL hydro = 0.008461845202759747 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008461845202759747 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6869e+04 |  512 |      1 | 3.035e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.62077057439892 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 541                                                     [SPH][rank=0]
Info: time since start : 728.360661173 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.1497255674748129 max=0.15026453795865816 delta=0.0005389704838452691
Number of particle pairs: 130816
Distance min=0.146383 max=1.908317 mean=0.806688
---------------- t = 4, dt = 0.008461845202759747 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.59 us   (1.7%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.1%)
   LB compute        : 586.01 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0354754163485746e-17,-2.62231642650379e-17,-1.8567422989737568e-17)
    sum a = (-1.8230631847887536e-16,-8.510379900794617e-17,2.384030473034926e-17)
    sum e = 2.59200099231465
    sum de = 9.961107459710572e-19
Info: CFL hydro = 0.009392510086037777 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009392510086037777 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2319e+04 |  512 |      1 | 4.156e-02 | 0.0% |   1.2% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 732.9439121809929 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.00846184520276, dt = 0.009392510086037777 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (0.7%)
   patch tree reduce : 1672.00 ns (0.2%)
   gen split merge   : 791.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.1%)
   LB compute        : 680.90 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3200866181423132e-17,-2.6946218693868484e-17,-1.7967683005500056e-17)
    sum a = (-5.439008618490781e-18,-9.93424092987638e-17,5.447205186914772e-17)
    sum e = 2.592001083294956
    sum de = -5.827586677109586e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010548492848302365
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.234608118863556e-17,-2.6935972983338495e-17,-1.7849674375288587e-17)
    sum a = (-3.432898496719128e-17,2.2692785150990602e-17,-6.191921975151616e-17)
    sum e = 2.5920007238597758
    sum de = -5.421010862427522e-20
Info: CFL hydro = 0.005010998331688467 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005010998331688467 cfl multiplier : 0.44520547945205474       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2211e+04 |  512 |      1 | 4.193e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 806.4414386418999 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.017854355288797, dt = 0.005010998331688467 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.3%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.3%)
   LB compute        : 381.17 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2772741848562918e-17,-2.6625674321573144e-17,-1.8624872152352144e-17)
    sum a = (1.4262907261503032e-16,-5.585375911776324e-17,6.978792543854694e-18)
    sum e = 2.592000824900266
    sum de = -1.0232158002831948e-18
Info: CFL hydro = 0.007097704180243147 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007097704180243147 cfl multiplier : 0.6301369863013698        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7367e+04 |  512 |      1 | 2.948e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 611.8972805566544 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.022865353620486, dt = 0.007097704180243147 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.84 us    (0.9%)
   patch tree reduce : 1312.00 ns (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 402.26 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.125344934425898e-17,-2.6887671776554268e-17,-1.8445206299844142e-17)
    sum a = (5.8377131254006e-17,-5.3839745162154174e-17,-7.386279088361647e-17)
    sum e = 2.5920009373983772
    sum de = 1.4365678785432934e-18
Info: CFL hydro = 0.008493710155323074 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008493710155323074 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6800e+04 |  512 |      1 | 3.048e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 838.425260410995 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 4.029963057800729, dt = 0.008493710155323074 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.2%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 395.90 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0949737210691479e-17,-2.7402884648919377e-17,-1.9417085127260148e-17)
    sum a = (3.5842422779763796e-17,-9.859300875714182e-18,-8.852293897909646e-18)
    sum e = 2.592001040603038
    sum de = -1.849919956803392e-18
Info: CFL hydro = 0.009417445467200393 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009417445467200393 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7379e+04 |  512 |      1 | 2.946e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1037.9187610415884 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.038456767956052, dt = 0.009417445467200393 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.2%)
   patch tree reduce : 1894.00 ns (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 393.11 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0977546996415732e-17,-2.7156987596199665e-17,-1.9144841961749036e-17)
    sum a = (1.6697580818014758e-17,4.8383172468469124e-17,1.8547663405144022e-17)
    sum e = 2.592001122670889
    sum de = 5.149960319306146e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011716417768178642
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1094640831044167e-17,-2.7154060250333955e-17,-1.9068730969240553e-17)
    sum a = (8.59702933841966e-17,2.5643549783627152e-17,-4.5666595505089446e-17)
    sum e = 2.5920007244627965
    sum de = -5.014435047745458e-19
Info: CFL hydro = 0.005018149337550232 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005018149337550232 cfl multiplier : 0.44520547945205474       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2177e+04 |  512 |      1 | 4.205e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 806.2980147783253 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.047874213423252, dt = 0.005018149337550232 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 390.17 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (75.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0267665623980848e-17,-2.6900844832949966e-17,-1.9559061401747124e-17)
    sum a = (7.249864771019521e-17,9.390925537200445e-18,-3.578387586244958e-17)
    sum e = 2.592000836584278
    sum de = -1.9651164376299768e-19
Info: CFL hydro = 0.00710322232893304 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00710322232893304 cfl multiplier : 0.6301369863013698         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6157e+04 |  512 |      1 | 3.169e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 570.0817480112466 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.052892362760802, dt = 0.00710322232893304 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.3%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 383.76 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.713665418895067e-18,-2.6997447246518424e-17,-1.9815204164996825e-17)
    sum a = (1.7027785431666943e-16,1.3817072486155268e-18,2.866457071704076e-17)
    sum e = 2.592000950449204
    sum de = 1.497554250745603e-18
Info: CFL hydro = 0.008495463005257274 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008495463005257274 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6033e+04 |  512 |      1 | 3.193e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 800.7480649510064 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.059995585089735, dt = 0.008495463005257274 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.2%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 403.78 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 us    (73.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.072156224697702e-18,-2.6673975528357374e-17,-1.9238517029451784e-17)
    sum a = (1.4718695012794214e-17,-1.8360313269738526e-17,-1.0688325224883499e-16)
    sum e = 2.592001045674015
    sum de = 3.7947076036992655e-19
Info: CFL hydro = 0.009427852994281935 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009427852994281935 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5925e+04 |  512 |      1 | 3.215e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 951.2407543960742 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.068491048094992, dt = 0.009427852994281935 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.2%)
   patch tree reduce : 1904.00 ns (0.5%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 393.90 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.44100180377727e-18,-2.7452649528636462e-17,-2.0904176827041264e-17)
    sum a = (1.1992165073471116e-16,-1.3163688888928604e-16,8.627473735423053e-17)
    sum e = 2.592001112215149
    sum de = 1.4026865606531214e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012079582142310164
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.84528692010511e-18,-2.7654636393370512e-17,-2.007573794704509e-17)
    sum a = (3.3430289786418043e-18,-5.73759789679329e-18,-2.2669366384064914e-17)
    sum e = 2.5920007229293804
    sum de = 7.115076756936123e-19
Info: CFL hydro = 0.005028180805385689 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005028180805385689 cfl multiplier : 0.44520547945205474       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2231e+04 |  512 |      1 | 4.186e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 810.7557714568652 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.077918901089274, dt = 0.005028180805385689 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.2%)
   patch tree reduce : 1934.00 ns (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 405.72 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (75.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.582978078264247e-18,-2.7211875331181746e-17,-2.0623151623933023e-17)
    sum a = (1.0091146668278484e-16,-5.597085295239168e-18,-5.348846365826887e-17)
    sum e = 2.592000833065658
    sum de = -1.3552527156068805e-18
Info: CFL hydro = 0.007113085244612334 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007113085244612334 cfl multiplier : 0.6301369863013698        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6161e+04 |  512 |      1 | 3.168e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 571.3687619664456 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.08294708189466, dt = 0.007113085244612334 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.3%)
   patch tree reduce : 1954.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 426.83 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.41 us    (74.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.495469089152662e-18,-2.7161378614998232e-17,-2.1068108195521072e-17)
    sum a = (-2.4103765858263236e-17,-8.875712664835334e-18,-5.084214299566625e-17)
    sum e = 2.592000935621851
    sum de = 4.472333961502706e-19
Info: CFL hydro = 0.008493949121213283 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008493949121213283 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5848e+04 |  512 |      1 | 3.231e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 792.6303508277547 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.0900601671392725, dt = 0.008493949121213283 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.4%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 422.09 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (74.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.089720299891966e-18,-2.7201263702418542e-17,-2.1548192917497653e-17)
    sum a = (-1.6106256953141163e-17,1.3376799667952354e-16,1.2388527703688367e-17)
    sum e = 2.5920010132781446
    sum de = -6.437450399132683e-20
Info: CFL hydro = 0.009407721842544911 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009407721842544911 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5598e+04 |  512 |      1 | 3.282e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 931.5740252866667 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.098554116260486, dt = 0.009407721842544911 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.3%)
   patch tree reduce : 1923.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 422.99 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.375136521798776e-18,-2.5605860205606122e-17,-2.1138364496298133e-17)
    sum a = (-8.807212771577699e-17,1.0910803510677524e-16,-5.245803791353865e-18)
    sum e = 2.5920010590837994
    sum de = 1.0503208545953324e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01129784522981733
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.84790287911108e-18,-2.5587198375712216e-17,-2.1240821601598015e-17)
    sum a = (1.1290187534873653e-16,1.4215191523891945e-17,6.381613987249679e-17)
    sum e = 2.592000720832187
    sum de = -1.0469327228063152e-18
Info: CFL hydro = 0.005006356624970168 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005006356624970168 cfl multiplier : 0.44520547945205474       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2033e+04 |  512 |      1 | 4.255e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 795.9341836719452 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.107961838103031, dt = 0.005006356624970168 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.1%)
   patch tree reduce : 1924.00 ns (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 422.33 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.880726457353381e-18,-2.5939943552530375e-17,-2.0558750014887385e-17)
    sum a = (-3.939036596900536e-17,-1.8725646033779242e-16,1.4589891794702937e-17)
    sum e = 2.5920008162816157
    sum de = -1.3857459017080354e-18
Info: CFL hydro = 0.007081545643006578 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007081545643006578 cfl multiplier : 0.6301369863013698        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6276e+04 |  512 |      1 | 3.146e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 572.9403166706203 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.112968194728001, dt = 0.007081545643006578 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.16 us    (0.9%)
   patch tree reduce : 1042.00 ns (0.2%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 424.68 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.22 us    (73.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.833577536642266e-18,-2.7850951525489746e-17,-2.0514839826901722e-17)
    sum a = (5.3699232560600053e-17,-3.4425587380759736e-18,-1.1732802229769134e-17)
    sum e = 2.59200089954789
    sum de = 1.6127507315721878e-18
Info: CFL hydro = 0.008460738045227095 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008460738045227095 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4397e+04 |  512 |      1 | 3.556e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 716.8761794661795 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.120049740371008, dt = 0.008460738045227095 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.09 us    (0.9%)
   patch tree reduce : 1654.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 762.00 ns  (0.2%)
   LB compute        : 414.73 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.013920694243225e-18,-2.7285790814290945e-17,-2.071682669163577e-17)
    sum a = (-7.672573514028169e-17,-5.648606582475679e-17,-1.4287789701361575e-16)
    sum e = 2.5920009589765423
    sum de = -1.5212711732687234e-18
Info: CFL hydro = 0.009377141477557572 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009377141477557572 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4294e+04 |  512 |      1 | 3.582e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 850.3413607445729 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.128510478416235, dt = 0.009377141477557572 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.1%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 398.82 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.55 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.253651668371775e-18,-2.7803931032521764e-17,-2.2637165579542095e-17)
    sum a = (7.378375254524227e-17,9.367506770274759e-18,-8.523260222603745e-17)
    sum e = 2.592000991180872
    sum de = -2.1734865426545347e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011162688533866753
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.431067480107024e-18,-2.7470213603830728e-17,-2.2350285684702432e-17)
    sum a = (-8.887422048298176e-18,6.838279942300574e-18,-8.86400328137249e-18)
    sum e = 2.592000719869696
    sum de = -2.744386749103933e-19
Info: CFL hydro = 0.0049939982677951345 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0049939982677951345 cfl multiplier : 0.44520547945205474      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1838e+04 |  512 |      1 | 4.325e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 780.4961610256022 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.137887619893792, dt = 0.0049939982677951345 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.1%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 429.45 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.001899923920642e-18,-2.7485216251392496e-17,-2.2010713564279972e-17)
    sum a = (-1.2313002180353027e-16,-4.775086576147558e-17,-1.2587587222556706e-18)
    sum e = 2.5920007964949052
    sum de = -1.6000452373633733e-18
Info: CFL hydro = 0.007065968034254412 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007065968034254412 cfl multiplier : 0.6301369863013698        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6316e+04 |  512 |      1 | 3.138e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 572.9118306812862 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.142881618161588, dt = 0.007065968034254412 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.08 us    (0.9%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 428.76 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.007443228792322e-18,-2.796932607393443e-17,-2.1981440105622862e-17)
    sum a = (-1.4548908952582984e-17,2.0421164759198974e-17,-1.5664227727418823e-17)
    sum e = 2.5920008623323127
    sum de = -6.793204236979489e-19
Info: CFL hydro = 0.008438819845113426 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008438819845113426 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5284e+04 |  512 |      1 | 3.350e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 759.3367708654714 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.149947586195842, dt = 0.008438819845113426 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.1%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 414.85 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.874248991902478e-18,-2.732896916581018e-17,-2.207511517332561e-17)
    sum a = (-9.187035897653684e-17,-5.23643628458359e-17,-8.961923000580518e-17)
    sum e = 2.5920009097045638
    sum de = 3.2356658585114273e-19
Info: CFL hydro = 0.009349488427477787 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009349488427477787 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6124e+04 |  512 |      1 | 3.175e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 956.7235095377055 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.158386406040956, dt = 0.009349488427477787 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.0%)
   patch tree reduce : 2.31 us    (0.5%)
   gen split merge   : 1072.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 421.97 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (75.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0165208518680967e-17,-2.813106193301496e-17,-2.3377784083566942e-17)
    sum a = (-8.700584198419181e-17,3.5912679080540854e-17,1.2687116981990876e-17)
    sum e = 2.592000938121365
    sum de = -3.8624702394796095e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011208150791493706
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0005668168999726e-17,-2.7960544036337295e-17,-2.2701567188587734e-17)
    sum a = (-1.836302106466431e-16,-5.515119610999264e-17,8.29551271425144e-17)
    sum e = 2.5920007209313933
    sum de = 2.278518628114068e-19
Info: CFL hydro = 0.004978288528917673 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004978288528917673 cfl multiplier : 0.44520547945205474       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1870e+04 |  512 |      1 | 4.313e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 780.3351808517625 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.167735894468433, dt = 0.004978288528917673 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (1.1%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 401.32 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1501541906377977e-17,-2.867042540877218e-17,-2.2186354316222624e-17)
    sum a = (-6.51363728579324e-17,9.777335191474278e-18,-4.0005108600804637e-17)
    sum e = 2.5920007820042126
    sum de = -1.229891839413244e-18
Info: CFL hydro = 0.007044091553224751 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007044091553224751 cfl multiplier : 0.6301369863013698        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5565e+04 |  512 |      1 | 3.289e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 544.828001556845 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 4.172714182997351, dt = 0.007044091553224751 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (1.1%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 415.92 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (73.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1579116571819315e-17,-2.8438433248914596e-17,-2.2795242256290482e-17)
    sum a = (1.203870987273592e-16,-1.3418953448418591e-17,8.676653145966996e-18)
    sum e = 2.5920008381694077
    sum de = -2.4614777447209968e-18
Info: CFL hydro = 0.00842052147704351 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00842052147704351 cfl multiplier : 0.7534246575342465         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6082e+04 |  512 |      1 | 3.184e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 796.5041513140058 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.179758274550576, dt = 0.00842052147704351 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.1%)
   patch tree reduce : 1973.00 ns (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 409.61 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.991031439671172e-18,-2.855186790121089e-17,-2.2438106060673755e-17)
    sum a = (5.2651242740675565e-17,2.0163558323016417e-17,-8.618106228652778e-18)
    sum e = 2.5920008838270445
    sum de = -2.270048298641525e-18
Info: CFL hydro = 0.00933968776485097 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00933968776485097 cfl multiplier : 0.8356164383561643         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6102e+04 |  512 |      1 | 3.180e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 953.3661161277415 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.1881787960276196, dt = 0.00933968776485097 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (1.1%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 399.55 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.61 us    (75.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.666096048577266e-18,-2.8345490017678274e-17,-2.2552272549436482e-17)
    sum a = (6.667908412916201e-17,-9.572420980874518e-17,-2.5385943347444596e-17)
    sum e = 2.5920009191444
    sum de = -9.554531645028508e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01101418961271349
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.736352349354326e-18,-2.8945595920149e-17,-2.278938756455906e-17)
    sum a = (-7.999265312641502e-17,5.566640898235775e-17,5.391000146293123e-17)
    sum e = 2.5920007239735456
    sum de = 3.049318610115481e-19
Info: CFL hydro = 0.004979255144662243 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004979255144662243 cfl multiplier : 0.44520547945205474       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1722e+04 |  512 |      1 | 4.368e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 769.7961305338814 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.197518483792471, dt = 0.004979255144662243 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.2%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 397.47 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.24 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.065114793238897e-17,-2.8137648461212805e-17,-2.2031204985339947e-17)
    sum a = (-1.2136775959237233e-17,3.967724586384502e-17,7.323048417662292e-17)
    sum e = 2.5920007786714283
    sum de = 5.658180087658726e-19
Info: CFL hydro = 0.00705009535088568 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00705009535088568 cfl multiplier : 0.6301369863013698         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6282e+04 |  512 |      1 | 3.145e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 570.025018034065 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 4.202497738937133, dt = 0.00705009535088568 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (1.1%)
   patch tree reduce : 1943.00 ns (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 386.95 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0602846725604742e-17,-2.771611065655044e-17,-2.1457445195660618e-17)
    sum a = (1.2737467330881103e-16,-1.5229224131774187e-16,1.270468105718514e-16)
    sum e = 2.5920008360038316
    sum de = -1.8431436932253575e-18
Info: CFL hydro = 0.008435482656674995 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008435482656674995 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7052e+04 |  512 |      1 | 3.003e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 845.2722233712027 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.209547834288019, dt = 0.008435482656674995 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (1.0%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 435.40 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.117218698756479e-18,-2.9842827427989385e-17,-2.019868647340495e-17)
    sum a = (-1.7341596908471147e-17,6.510709939927528e-17,-4.2270874300864846e-17)
    sum e = 2.592000889362249
    sum de = 1.1418004128987969e-18
Info: CFL hydro = 0.009363575106437889 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009363575106437889 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6252e+04 |  512 |      1 | 3.150e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 963.9323282433146 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.217983316944694, dt = 0.009363575106437889 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.1%)
   patch tree reduce : 2.04 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 435.05 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (73.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.973467364476907e-18,-2.8298652483826904e-17,-2.153062884230339e-17)
    sum a = (7.503372922990081e-17,5.0164462427754185e-17,1.990595188683386e-17)
    sum e = 2.5920009376600115
    sum de = -2.439454888092385e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010487311226512861
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.566566289143097e-18,-2.832938961541687e-17,-2.1047616774461097e-17)
    sum a = (-5.311376338745788e-17,-6.710940397142151e-18,5.857033608114293e-17)
    sum e = 2.5920007281846638
    sum de = 1.954952042262925e-18
Info: CFL hydro = 0.004990657619362344 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004990657619362344 cfl multiplier : 0.44520547945205474       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3115e+04 |  512 |      1 | 3.904e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 863.4390956545683 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.2273468920511315, dt = 0.004990657619362344 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.1%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 418.95 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 us    (72.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0337921924757909e-17,-2.8717262942623556e-17,-2.0596805511141626e-17)
    sum a = (1.2915449959516323e-17,-1.2463906859730422e-17,-4.30671123763382e-17)
    sum e = 2.5920007866749533
    sum de = 2.5106056556617462e-18
Info: CFL hydro = 0.007065236806902938 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007065236806902938 cfl multiplier : 0.6301369863013698        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7093e+04 |  512 |      1 | 2.995e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 599.8172484330216 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.232337549670493, dt = 0.007065236806902938 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (1.0%)
   patch tree reduce : 851.00 ns  (0.2%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 418.02 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0093488544971052e-17,-2.884606616071483e-17,-2.1237894255732303e-17)
    sum a = (-2.757559805499632e-17,8.120676982421859e-17,4.44956571588051e-18)
    sum e = 2.5920008535800423
    sum de = 1.1180834903756764e-19
Info: CFL hydro = 0.0084516175650133 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.0084516175650133 cfl multiplier : 0.7534246575342465          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7109e+04 |  512 |      1 | 2.993e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 849.9488408649142 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.239402786477396, dt = 0.0084516175650133 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 401.38 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0502585129704144e-17,-2.784930489344029e-17,-2.0999315567676867e-17)
    sum a = (-6.323067069935462e-18,-6.440160904563896e-19,-5.152128723651117e-19)
    sum e = 2.592000919179773
    sum de = -4.3029273720518457e-19
Info: CFL hydro = 0.00937358824629718 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00937358824629718 cfl multiplier : 0.8356164383561643         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6919e+04 |  512 |      1 | 3.026e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1005.4159883764129 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.2478544040424095, dt = 0.00937358824629718 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.44 us    (1.0%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 409.51 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (73.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0464529633449903e-17,-2.80820288897643e-17,-2.0981751492482604e-17)
    sum a = (6.619314471545401e-17,-5.730572266715584e-17,-1.3016150657296777e-16)
    sum e = 2.592000979686963
    sum de = -7.250602028496811e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010717464867794266
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0080315488575352e-17,-2.830304350262547e-17,-2.1476472943787738e-17)
    sum a = (1.3204671731048556e-16,-6.903267020519354e-17,3.9203015833599864e-17)
    sum e = 2.592000732318823
    sum de = 8.571973426213519e-19
Info: CFL hydro = 0.0049914078383585326 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0049914078383585326 cfl multiplier : 0.44520547945205474      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3168e+04 |  512 |      1 | 3.888e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 867.8912425501493 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.257227992288707, dt = 0.0049914078383585326 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.39 us    (1.1%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 377.99 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.945237129145967e-18,-2.861187849145797e-17,-2.0621687951000168e-17)
    sum a = (-1.7451665113021875e-16,-9.352870040946204e-17,2.6229018956769323e-18)
    sum e = 2.5920008013319387
    sum de = 2.270048298641525e-18
Info: CFL hydro = 0.0070628257895478845 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0070628257895478845 cfl multiplier : 0.6301369863013698       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7041e+04 |  512 |      1 | 3.005e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 598.0538583942947 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.262219400127065, dt = 0.0070628257895478845 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 us    (1.0%)
   patch tree reduce : 1283.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 376.31 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.099730658100928e-17,-2.956472957074685e-17,-2.0506057789304587e-17)
    sum a = (5.132222771764283e-17,-2.999944043180491e-17,5.1708637371916666e-17)
    sum e = 2.5920008805323045
    sum de = 1.3247595295057257e-18
Info: CFL hydro = 0.00844267504022201 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00844267504022201 cfl multiplier : 0.7534246575342465         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7003e+04 |  512 |      1 | 3.011e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 844.3542468170355 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.269282225916613, dt = 0.00844267504022201 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.28 us    (1.1%)
   patch tree reduce : 1233.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 821.00 ns  (0.2%)
   LB compute        : 364.18 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.874669441509165e-18,-2.963644954445677e-17,-1.995425309361809e-17)
    sum a = (7.58650954557627e-17,-8.675482207620711e-17,9.88271964263987e-18)
    sum e = 2.5920009566157516
    sum de = 1.9989977555201488e-19
Info: CFL hydro = 0.009363063581547348 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009363063581547348 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5997e+04 |  512 |      1 | 3.201e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 949.6032168301716 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.277724900956835, dt = 0.009363063581547348 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.3%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 374.24 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.009638738191605e-18,-3.0708589967773367e-17,-2.0058905708317254e-17)
    sum a = (3.828968392349808e-18,-1.2581732530825285e-16,3.672062653947705e-17)
    sum e = 2.592001023654886
    sum de = 6.06475590234079e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010755201177552904
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.397512065398294e-18,-3.084617522346178e-17,-1.9889119648106024e-17)
    sum a = (7.671988044855027e-17,1.7774844096596353e-17,2.6791069362985807e-17)
    sum e = 2.592000735253646
    sum de = 6.877907531704919e-19
Info: CFL hydro = 0.00499012785129731 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00499012785129731 cfl multiplier : 0.44520547945205474        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1688e+04 |  512 |      1 | 4.381e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 769.4782391747447 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.287087964538383, dt = 0.00499012785129731 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.1%)
   patch tree reduce : 1714.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 428.02 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.64957519670917e-18,-2.99621167720171e-17,-1.986679863587998e-17)
    sum a = (9.449472454514662e-17,-1.117660651528407e-16,2.693158196453993e-17)
    sum e = 2.592000816115246
    sum de = 6.437450399132683e-19
Info: CFL hydro = 0.0070642437049470205 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0070642437049470205 cfl multiplier : 0.6301369863013698       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6234e+04 |  512 |      1 | 3.154e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 569.5896949098526 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.29207809238968, dt = 0.0070642437049470205 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.22 us    (1.0%)
   patch tree reduce : 1182.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 404.65 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.053128476570581e-18,-3.097644211448591e-17,-1.9573698131075677e-17)
    sum a = (7.922568850959876e-17,-3.561994449396977e-17,-1.3770234952303894e-17)
    sum e = 2.5920009049543236
    sum de = -2.358139725155972e-18
Info: CFL hydro = 0.008441933871538472 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008441933871538472 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6101e+04 |  512 |      1 | 3.180e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 799.7623204952173 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.299142336094627, dt = 0.008441933871538472 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.3%)
   patch tree reduce : 1973.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 421.68 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.273173762475243e-18,-3.094350947349667e-17,-1.9869634502187385e-17)
    sum a = (-1.4428302302915697e-16,-1.7428246346096188e-16,-5.61113655539458e-17)
    sum e = 2.592000985799405
    sum de = 1.7076184216646695e-18
Info: CFL hydro = 0.009357913801838378 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009357913801838378 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5752e+04 |  512 |      1 | 3.250e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 934.9885399857236 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.307584269966165, dt = 0.009357913801838378 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.2%)
   patch tree reduce : 1974.00 ns (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 391.31 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.55266139628097e-18,-3.331795288882139e-17,-2.061034448577054e-17)
    sum a = (-4.653308988133986e-17,-4.262215580475015e-17,-7.217663966496701e-17)
    sum e = 2.5920010513260094
    sum de = 3.5575383784680614e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01187964813858999
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.184501913888678e-18,-3.258282315829475e-17,-2.061253999516982e-17)
    sum a = (-3.0549781454558555e-17,-5.684905671210494e-17,3.4987637786976223e-17)
    sum e = 2.5920007366022184
    sum de = -2.078618852562053e-18
Info: CFL hydro = 0.004985795392244927 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004985795392244927 cfl multiplier : 0.44520547945205474       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1947e+04 |  512 |      1 | 4.286e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 786.0981397017626 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.3169421837680035, dt = 0.004985795392244927 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.43 us    (1.1%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 396.78 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.336952597801402e-18,-3.3028877484582443e-17,-1.9918393106763134e-17)
    sum a = (8.333568210505682e-17,2.6697394295283062e-17,-1.5362711103250603e-17)
    sum e = 2.592000825064021
    sum de = 3.083199928005653e-19
Info: CFL hydro = 0.007057008973969103 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007057008973969103 cfl multiplier : 0.6301369863013698        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5945e+04 |  512 |      1 | 3.211e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 558.9589529696952 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.3219279791602485, dt = 0.007057008973969103 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.2%)
   patch tree reduce : 1694.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 400.22 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.356108773671656e-18,-3.2444871984373125e-17,-2.020088198280423e-17)
    sum a = (-4.25284807370474e-17,-4.177908019542542e-17,-7.625150511003653e-17)
    sum e = 2.592000916466126
    sum de = -1.0672615135404184e-19
Info: CFL hydro = 0.008439887640608247 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008439887640608247 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6429e+04 |  512 |      1 | 3.116e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 815.2179832615273 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.328984988134217, dt = 0.008439887640608247 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.47 us    (1.0%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 409.00 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.146858075646802e-18,-3.325867413504074e-17,-2.101102495113971e-17)
    sum a = (-1.1724605661345144e-16,8.039662685588312e-17,-3.0069696732581974e-17)
    sum e = 2.592000995082929
    sum de = 1.9227647902672618e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010069395034744761
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.563638943277386e-18,-3.263460058829451e-17,-2.085148460145847e-17)
    sum a = (1.932048271369169e-16,3.810233378809258e-17,7.346467184587979e-17)
    sum e = 2.5920007360542234
    sum de = 2.374233351153804e-18
Info: CFL hydro = 0.0046839501088383854 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0046839501088383854 cfl multiplier : 0.41780821917808214      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1832e+04 |  512 |      1 | 4.327e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 702.1657379136967 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.3374248757748255, dt = 0.0046839501088383854 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.2%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 398.08 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.197977565549795e-18,-3.246938850599845e-17,-2.005085550718655e-17)
    sum a = (-7.919056035921024e-17,5.709495376482465e-17,9.156737867943577e-18)
    sum e = 2.5920008153425154
    sum de = 1.720323915873484e-18
Info: CFL hydro = 0.006862723308362749 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006862723308362749 cfl multiplier : 0.6118721461187214        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5989e+04 |  512 |      1 | 3.202e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 526.5838254256028 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.342108825883664, dt = 0.006862723308362749 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (1.1%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 382.88 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.337446943777748e-18,-3.2344793347589133e-17,-2.0077201619977946e-17)
    sum a = (-3.1908069936248397e-17,-5.896845511887961e-17,-8.833558884369097e-17)
    sum e = 2.592000905265385
    sum de = 1.1602233795015779e-18
Info: CFL hydro = 0.008313519541504446 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008313519541504446 cfl multiplier : 0.741248097412481         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6379e+04 |  512 |      1 | 3.126e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 790.3209359969923 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.348971549192027, dt = 0.008313519541504446 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.1%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 407.05 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.449052004907975e-18,-3.3305694628008724e-17,-2.117202897375381e-17)
    sum a = (4.7528387475681557e-17,-2.088954009771271e-17,1.2449416497695155e-16)
    sum e = 2.592000981198226
    sum de = 6.924494343803905e-19
Info: CFL hydro = 0.009280151627022514 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009280151627022514 cfl multiplier : 0.8274987316083205        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6053e+04 |  512 |      1 | 3.190e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 938.346260996383 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 4.357285068733531, dt = 0.009280151627022514 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.1%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 401.16 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.741366141872374e-18,-3.331100044239033e-17,-1.9007256706060628e-17)
    sum a = (1.0799564367780511e-16,-1.351262851612134e-17,5.531512747847245e-17)
    sum e = 2.5920010350969265
    sum de = -1.029145030913975e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011438684627975503
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.494005416219807e-18,-3.3229400676383635e-17,-1.9430258183655847e-17)
    sum a = (1.1841699495973578e-16,3.946062226978242e-17,1.063212018426185e-17)
    sum e = 2.5920007358481842
    sum de = -1.6872896309305663e-18
Info: CFL hydro = 0.004964593154834731 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004964593154834731 cfl multiplier : 0.4424995772027735        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2076e+04 |  512 |      1 | 4.240e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 787.9695715238055 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.366565220360553, dt = 0.004964593154834731 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (1.2%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 383.00 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.817788521240598e-18,-3.28323793933466e-17,-1.9591262206269943e-17)
    sum a = (-1.1764417565118812e-16,9.023250896467161e-17,5.4823333373033024e-17)
    sum e = 2.592000820927955
    sum de = 1.0842021724855044e-19
Info: CFL hydro = 0.0070512572681646745 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0070512572681646745 cfl multiplier : 0.6283330514685157       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6432e+04 |  512 |      1 | 3.116e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 573.6069300824853 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.371529813515388, dt = 0.0070512572681646745 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.2%)
   patch tree reduce : 1894.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 411.00 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.307807566887427e-18,-3.19768625640926e-17,-1.911556850309193e-17)
    sum a = (-2.843038304778389e-17,3.6299088734814685e-18,2.700183826531699e-17)
    sum e = 2.5920009027397652
    sum de = -4.743384504624082e-20
Info: CFL hydro = 0.00844602579458447 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00844602579458447 cfl multiplier : 0.7522220343123438         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6073e+04 |  512 |      1 | 3.185e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 796.9051364247266 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.378581070783553, dt = 0.00844602579458447 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.26 us    (1.0%)
   patch tree reduce : 1303.00 ns (0.3%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 400.63 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (74.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.188518222859709e-18,-3.20376049908061e-17,-1.8898944909029326e-17)
    sum a = (6.269203906006382e-17,-2.3629535828018077e-17,-6.91556187315534e-17)
    sum e = 2.5920009678731186
    sum de = -3.3203691532368573e-19
Info: CFL hydro = 0.009381783088438287 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009381783088438287 cfl multiplier : 0.8348146895415626        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6009e+04 |  512 |      1 | 3.198e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 950.6931181424661 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.387027096578137, dt = 0.009381783088438287 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.2%)
   patch tree reduce : 1652.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 398.60 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.273722639825065e-18,-3.2656006804937523e-17,-1.9993772262805187e-17)
    sum a = (-5.648021113302537e-17,1.7259631224231243e-17,5.906213018658235e-17)
    sum e = 2.5920010115469854
    sum de = -1.3349239248727773e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010426530847362735
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.670378004628887e-18,-3.2433528519143496e-17,-1.9420012473125858e-17)
    sum a = (9.854617122329046e-17,2.5760643618255584e-19,2.2364922414030986e-18)
    sum e = 2.5920007357088863
    sum de = 3.6930636500287495e-19
Info: CFL hydro = 0.005007583445532955 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005007583445532955 cfl multiplier : 0.44493822984718756       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2362e+04 |  512 |      1 | 4.142e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 815.4385247495904 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.396408879666575, dt = 0.005007583445532955 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.3%)
   patch tree reduce : 1873.00 ns (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 385.47 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.43 us    (76.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.731431818202127e-18,-3.244084688380777e-17,-1.9645418104785595e-17)
    sum a = (6.494609537666119e-17,8.590003708341953e-17,-4.894522287468561e-17)
    sum e = 2.5920008137754587
    sum de = -9.215718466126788e-19
Info: CFL hydro = 0.0070892751585174526 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0070892751585174526 cfl multiplier : 0.6299588198981251       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6131e+04 |  512 |      1 | 3.174e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 567.9588043101718 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.401416463112108, dt = 0.0070892751585174526 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.3%)
   patch tree reduce : 2.29 us    (0.6%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 391.06 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.40 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.142303462727816e-18,-3.1730965511372887e-17,-2.019868647340495e-17)
    sum a = (6.808128279883751e-17,-3.166217288352868e-17,-5.889819881810254e-18)
    sum e = 2.5920008864792177
    sum de = -1.2908782116155537e-18
Info: CFL hydro = 0.008470408716165537 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008470408716165537 cfl multiplier : 0.7533058799320834        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5641e+04 |  512 |      1 | 3.273e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 779.6650534506678 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.408505738270626, dt = 0.008470408716165537 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 401.37 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (73.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.6058673328363005e-18,-3.241889178981494e-17,-2.0061101217716538e-17)
    sum a = (-4.3459376722343455e-17,-8.922550198686708e-17,-1.680881996091177e-17)
    sum e = 2.592000943386009
    sum de = -7.420008617947671e-19
Info: CFL hydro = 0.00938404921257515 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00938404921257515 cfl multiplier : 0.8355372532880555         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6380e+04 |  512 |      1 | 3.126e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 975.5517695465787 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.416976146986792, dt = 0.00938404921257515 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.19 us    (1.0%)
   patch tree reduce : 1554.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.3%)
   LB compute        : 380.64 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.324530742868317e-18,-3.3338078391648154e-17,-2.0151848939553573e-17)
    sum a = (-6.67288490088791e-18,5.0748467927963503e-17,-8.727296229443793e-17)
    sum e = 2.592000981560702
    sum de = 1.3891340334970526e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011234344590814283
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.9754447483822966e-18,-3.2740899835043134e-17,-2.0593878165275913e-17)
    sum a = (2.427282008200804e-17,8.032637055510605e-18,5.181402182308226e-19)
    sum e = 2.5920007365075923
    sum de = 2.405573570202213e-19
Info: CFL hydro = 0.004995545933827457 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004995545933827457 cfl multiplier : 0.4451790844293518        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2592e+04 |  512 |      1 | 4.066e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 830.8316746931363 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.426360196199367, dt = 0.004995545933827457 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.32 us    (1.1%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 372.26 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.944707616792333e-18,-3.2978014850165715e-17,-2.017819505234497e-17)
    sum a = (4.236601304150045e-17,-7.341783431202841e-17,-2.369686478292943e-18)
    sum e = 2.5920008053925416
    sum de = -7.860465750519907e-19
Info: CFL hydro = 0.007067694427409141 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007067694427409141 cfl multiplier : 0.6301193896195678        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5880e+04 |  512 |      1 | 3.224e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 557.7819119940663 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.431355742133194, dt = 0.007067694427409141 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (1.0%)
   patch tree reduce : 842.00 ns  (0.2%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.2%)
   LB compute        : 386.27 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.555370616652788e-18,-3.345370855334373e-17,-2.0192831781673527e-17)
    sum a = (-5.70568982685704e-17,3.50344753208276e-17,8.108308946139231e-17)
    sum e = 2.592000870848746
    sum de = -1.009663273127126e-18
Info: CFL hydro = 0.00844627485678951 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00844627485678951 cfl multiplier : 0.7534129264130452         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6492e+04 |  512 |      1 | 3.105e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 819.5579398018803 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.438423436560603, dt = 0.00844627485678951 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.91 us    (1.0%)
   patch tree reduce : 811.00 ns  (0.2%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.3%)
   LB compute        : 385.31 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.510417205340957e-18,-3.301021565468854e-17,-1.9238517029451784e-17)
    sum a = (-1.674441835186613e-17,2.8385887390625086e-16,1.3161347012236035e-17)
    sum e = 2.592000924401769
    sum de = 7.928228386300251e-19
Info: CFL hydro = 0.009360967261919581 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009360967261919581 cfl multiplier : 0.8356086176086969        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6295e+04 |  512 |      1 | 3.142e-02 | 0.3% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 967.7146002038198 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.446869711417393, dt = 0.009360967261919581 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.41 us    (0.9%)
   patch tree reduce : 722.00 ns  (0.2%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 762.00 ns  (0.2%)
   LB compute        : 372.31 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.62 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.577014323785879e-18,-2.903048895025462e-17,-1.9545888345351425e-17)
    sum a = (4.874616335581727e-17,-4.3277881278669384e-17,2.6024104746169563e-17)
    sum e = 2.592000963958246
    sum de = -4.2351647362715017e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01153404064150158
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.1298622427985446e-18,-3.069907609370981e-17,-1.9402448397931592e-17)
    sum a = (8.957092879902095e-17,2.4332098835788685e-17,4.3998008361634256e-17)
    sum e = 2.592000738417768
    sum de = -8.029872339970767e-19
Info: CFL hydro = 0.0049856561677274844 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0049856561677274844 cfl multiplier : 0.44520287253623225      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2787e+04 |  512 |      1 | 4.004e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 841.6303159925975 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.456230678679312, dt = 0.0049856561677274844 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.1%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 417.35 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.45 us    (74.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.23775359022316e-18,-3.017800852961328e-17,-1.9039457510583447e-17)
    sum a = (1.4202311202082818e-16,-2.3032357271413063e-17,8.723490679818368e-18)
    sum e = 2.592000801708777
    sum de = -5.658180087658726e-19
Info: CFL hydro = 0.007055423062946112 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007055423062946112 cfl multiplier : 0.6301352483574881        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6007e+04 |  512 |      1 | 3.199e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 561.1155521072387 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.46121633484704, dt = 0.007055423062946112 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.76 us    (1.0%)
   patch tree reduce : 1152.00 ns (0.3%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.2%)
   LB compute        : 379.77 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0726699356702366e-18,-3.054099941696142e-17,-1.901311139779205e-17)
    sum a = (-1.151032394397511e-16,-6.10410159918029e-17,-1.8816979224789422e-17)
    sum e = 2.5920008653061424
    sum de = 1.951563910473908e-18
Info: CFL hydro = 0.008435149370226443 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008435149370226443 cfl multiplier : 0.753423498904992         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6923e+04 |  512 |      1 | 3.025e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 839.5443048609867 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.468271757909986, dt = 0.008435149370226443 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.69 us    (0.9%)
   patch tree reduce : 1313.00 ns (0.3%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 412.88 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.203777725907744e-18,-3.1190870199149235e-17,-1.932633740542311e-17)
    sum a = (1.0924854770832937e-16,-1.413322583965204e-17,3.7235839411842166e-18)
    sum e = 2.592000920794918
    sum de = 5.590417451878382e-19
Info: CFL hydro = 0.00935664185457511 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00935664185457511 cfl multiplier : 0.8356156659366615         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7090e+04 |  512 |      1 | 2.996e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1013.597735023861 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.476706907280213, dt = 0.00935664185457511 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (0.8%)
   patch tree reduce : 1152.00 ns (0.3%)
   gen split merge   : 602.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 521.00 ns  (0.1%)
   LB compute        : 369.13 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.69 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.916788768321133e-18,-3.1334310146569065e-17,-1.9238517029451784e-17)
    sum a = (-1.1791349147083352e-17,1.9759584593548318e-16,1.2161365664509204e-16)
    sum e = 2.592000965947159
    sum de = -4.743384504624082e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010756879890531864
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.729859082522325e-18,-3.015458976268759e-17,-1.8638411126981057e-17)
    sum a = (1.2566510332323589e-16,-7.017433509282079e-17,8.46002955190439e-17)
    sum e = 2.5920007410628925
    sum de = 1.8973538018496328e-19
Info: CFL hydro = 0.004988018106934833 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004988018106934833 cfl multiplier : 0.4452052219788872        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3033e+04 |  512 |      1 | 3.929e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 857.4202963170944 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.486063549134788, dt = 0.004988018106934833 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.64 us    (0.9%)
   patch tree reduce : 1283.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 691.00 ns  (0.2%)
   LB compute        : 385.76 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.2164212699498094e-18,-3.164460880833442e-17,-1.8456915683306983e-17)
    sum a = (-1.8492629302868657e-16,3.111183186077504e-17,1.2540749688705333e-16)
    sum e = 2.592000804161091
    sum de = 8.436448154652831e-19
Info: CFL hydro = 0.007062103044617924 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007062103044617924 cfl multiplier : 0.6301368146525914        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6283e+04 |  512 |      1 | 3.144e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 571.0937258430389 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.491051567241723, dt = 0.007062103044617924 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.2%)
   patch tree reduce : 1944.00 ns (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 400.40 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.345333550788034e-18,-3.123770773300061e-17,-1.742356259271105e-17)
    sum a = (8.910840815223864e-17,1.4465186860823652e-16,1.0304257447302233e-17)
    sum e = 2.592000870975025
    sum de = 1.5619287547369298e-18
Info: CFL hydro = 0.008444496939101702 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008444496939101702 cfl multiplier : 0.7534245431017276        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5479e+04 |  512 |      1 | 3.308e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 768.6028816874106 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.49811367028634, dt = 0.0018863297136597623 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.1%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 406.85 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.328446780686723e-18,-3.057905491321566e-17,-1.779240817179062e-17)
    sum a = (1.8011373642545792e-16,-8.4407090691907e-17,-4.0912585819175004e-17)
    sum e = 2.5920007500046984
    sum de = 1.3755815063409838e-18
Info: CFL hydro = 0.009364204932298356 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009364204932298356 cfl multiplier : 0.8356163620678183        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6218e+04 |  512 |      1 | 3.157e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 215.10590581560095 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 609                                                     [SPH][rank=0]
Info: time since start : 731.489705959 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.1497764668552139 max=0.15028048766413898 delta=0.0005040208089250875
Number of particle pairs: 130816
Distance min=0.146944 max=1.991177 mean=0.806624
---------------- t = 4.5, dt = 0.009364204932298356 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.17 us   (1.7%)
   patch tree reduce : 1783.00 ns (0.3%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.1%)
   LB compute        : 581.90 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.98 us    (82.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7549983778671348e-18,-3.155093374063167e-17,-1.831054839002144e-17)
    sum a = (3.817259008886964e-17,-8.90703526559844e-17,-4.601787700897475e-17)
    sum e = 2.5920009747434833
    sum de = -1.0130514049161432e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.0113053877533453
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.2938129762745406e-18,-3.1495314169183163e-17,-1.83808046907985e-17)
    sum a = (6.367562727094267e-17,4.7973344047269606e-17,9.700053260619513e-17)
    sum e = 2.592000741119317
    sum de = 1.1858461261560205e-18
Info: CFL hydro = 0.004984019196330032 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004984019196330032 cfl multiplier : 0.4452054540226061        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 9.9913e+03 |  512 |      1 | 5.124e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 657.8503082244531 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.509364204932298, dt = 0.004984019196330032 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 424.86 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9952236979720326e-18,-3.067565732678412e-17,-1.7217184709178435e-17)
    sum a = (-9.510361248521449e-17,3.6129302674603456e-17,9.999813477268304e-18)
    sum e = 2.5920008068404004
    sum de = 1.4094628242311558e-18
Info: CFL hydro = 0.007051091673513152 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007051091673513152 cfl multiplier : 0.630136969348404         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5969e+04 |  512 |      1 | 3.206e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 559.6249689632757 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.514348224128629, dt = 0.007051091673513152 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 2.29 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 405.28 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.089136256164861e-18,-3.057905491321566e-17,-1.728890468288835e-17)
    sum a = (-3.332490533525245e-17,2.928553395880468e-17,-1.4051260155412137e-17)
    sum e = 2.5920008774850727
    sum de = -6.098637220230962e-19
Info: CFL hydro = 0.008426844418679039 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008426844418679039 cfl multiplier : 0.7534246462322693        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5879e+04 |  512 |      1 | 3.224e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 787.256691441275 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 4.5213993158021415, dt = 0.008426844418679039 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 2.14 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 414.66 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.051995555493653e-18,-3.0289247672510286e-17,-1.7602130690519413e-17)
    sum a = (1.5121497803916028e-16,7.957404266761836e-17,-3.5854132163226634e-17)
    sum e = 2.592000942002685
    sum de = 1.2739375526704677e-18
Info: CFL hydro = 0.009343747031555407 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009343747031555407 cfl multiplier : 0.8356164308215129        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6259e+04 |  512 |      1 | 3.149e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 963.3566653181525 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.5298261602208205, dt = 0.009343747031555407 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.1%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 412.19 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.885210737517795e-18,-2.928809538643717e-17,-1.8003177074121802e-17)
    sum a = (7.341783431202841e-17,5.60293998697059e-17,-9.201233525102381e-17)
    sum e = 2.592000996108403
    sum de = 1.480613591800517e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011852030161095175
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1629426765271133e-18,-2.941104391279703e-17,-1.8313475735887153e-17)
    sum a = (6.205973235307027e-17,-7.224689596574407e-18,1.98356955860568e-17)
    sum e = 2.5920007434615178
    sum de = -1.8126505071242027e-19
Info: CFL hydro = 0.004979478284296156 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004979478284296156 cfl multiplier : 0.44520547694050433       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2117e+04 |  512 |      1 | 4.226e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 796.0591589371568 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.539169907252376, dt = 0.004979478284296156 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.2%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 428.31 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9693719311569823e-18,-2.9671577694845294e-17,-1.7635795167975087e-17)
    sum a = (5.978811196127864e-17,4.226501960913343e-17,6.789100531756631e-17)
    sum e = 2.592000814346168
    sum de = 6.437450399132683e-20
Info: CFL hydro = 0.007048945113181296 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007048945113181296 cfl multiplier : 0.6301369846270028        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6154e+04 |  512 |      1 | 3.170e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 565.5726958359027 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.544149385536672, dt = 0.007048945113181296 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 409.68 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5368565794982026e-18,-2.93759157624085e-17,-1.7100822711016428e-17)
    sum a = (-5.1404193401882737e-17,-6.441917312083323e-17,1.3161347012236035e-17)
    sum e = 2.5920008900091998
    sum de = -2.727446090158847e-19
Info: CFL hydro = 0.008430650887239287 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008430650887239287 cfl multiplier : 0.7534246564180019        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6098e+04 |  512 |      1 | 3.180e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 797.878746333356 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 4.551198330649854, dt = 0.008430650887239287 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 398.51 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.412864829812178e-18,-3.022191871759894e-17,-1.7066426397094325e-17)
    sum a = (3.7680795983430213e-17,-1.6318196793818629e-16,-2.7353119769202295e-17)
    sum e = 2.592000958109929
    sum de = -7.233661369551725e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010600269273895213
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0330417037361936e-18,-3.070200343957552e-17,-1.7229625929107704e-17)
    sum a = (1.2163707541201774e-16,-2.9179783589405875e-17,2.995260289795354e-17)
    sum e = 2.59200074323964
    sum de = 3.9567026548616505e-19
Info: CFL hydro = 0.004675282911226415 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004675282911226415 cfl multiplier : 0.41780821880600066       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2837e+04 |  512 |      1 | 3.988e-02 | 0.1% |   2.0% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 760.9669821303763 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.5596289815370925, dt = 0.004675282911226415 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.0%)
   patch tree reduce : 1623.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 486.97 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (73.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1094640831044167e-18,-3.017508118374756e-17,-1.6931036650805197e-17)
    sum a = (1.635332494420716e-16,-6.323067069935462e-19,-5.805512320877781e-17)
    sum e = 2.592000808866571
    sum de = 3.1340219048409113e-19
Info: CFL hydro = 0.006847128690389478 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006847128690389478 cfl multiplier : 0.6118721458706671        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6930e+04 |  512 |      1 | 3.024e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 556.5439751730636 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.564304264448319, dt = 0.006847128690389478 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.2%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 387.82 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4783096621839852e-19,-3.0066769386716264e-17,-1.7523092352145218e-17)
    sum a = (-1.3512628516121338e-16,1.518707035130795e-17,1.3215210176165114e-16)
    sum e = 2.5920008866528494
    sum de = -8.131516293641283e-20
Info: CFL hydro = 0.008296894639278189 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008296894639278189 cfl multiplier : 0.7412480972471114        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7234e+04 |  512 |      1 | 2.971e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 829.7292058572519 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.571151393138709, dt = 0.008296894639278189 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1984.00 ns (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 399.07 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.041823741333326e-18,-2.985307313851937e-17,-1.5856975156764223e-17)
    sum a = (-1.0878017236981562e-16,-6.011597469823826e-17,4.435514455725098e-17)
    sum e = 2.592000956535577
    sum de = -5.55653613398821e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010558316949911687
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.924729906704892e-18,-3.0248264830390335e-17,-1.613365508085305e-17)
    sum a = (1.0941247907680918e-16,3.7715924133818745e-17,-6.6275110399693915e-18)
    sum e = 2.5920007433807855
    sum de = 3.7608262858090935e-19
Info: CFL hydro = 0.004631443400978381 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004631443400978381 cfl multiplier : 0.41374936574903715       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3184e+04 |  512 |      1 | 3.883e-02 | 0.1% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 769.1313316795321 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.5794482877779865, dt = 0.004631443400978381 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (1.0%)
   patch tree reduce : 1894.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 761.00 ns  (0.2%)
   LB compute        : 411.52 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.391018798566293e-19,-2.9645231582053896e-17,-1.6328003402468762e-17)
    sum a = (1.5034848366290987e-17,-5.257513174816708e-17,-1.6627324517237696e-18)
    sum e = 2.5920008093834017
    sum de = -2.371692252312041e-20
Info: CFL hydro = 0.0068179303387744285 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0068179303387744285 cfl multiplier : 0.6091662438326915       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7489e+04 |  512 |      1 | 2.928e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 569.5176431750493 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.5840797311789645, dt = 0.0068179303387744285 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (0.9%)
   patch tree reduce : 1122.00 ns (0.3%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 561.00 ns  (0.2%)
   LB compute        : 348.67 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.376382069237739e-19,-3.0284856653711725e-17,-1.6423142143104364e-17)
    sum a = (-6.332434576705736e-17,1.0053676641197384e-16,3.6626951471774306e-17)
    sum e = 2.5920008875404537
    sum de = 7.115076756936123e-20
Info: CFL hydro = 0.008275664855422074 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008275664855422074 cfl multiplier : 0.7394441625551277        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7168e+04 |  512 |      1 | 2.982e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 823.0309798167751 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.590897661517739, dt = 0.008275664855422074 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.1%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 398.56 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1504469252243688e-18,-2.8865093908841954e-17,-1.606527411102121e-17)
    sum a = (3.5502850659341336e-17,9.140344731095595e-17,-1.1873314831323256e-17)
    sum e = 2.5920009563244806
    sum de = -1.3484764520288461e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010240734449552006
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.035564401376316e-19,-2.88109380103263e-17,-1.6227375888334948e-17)
    sum a = (-1.8873184265411068e-16,-1.4121516456189198e-16,5.430812050066791e-17)
    sum e = 2.5920007435757633
    sum de = 3.2864878353466853e-19
Info: CFL hydro = 0.004625455577650121 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004625455577650121 cfl multiplier : 0.4131480541850426        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3288e+04 |  512 |      1 | 3.853e-02 | 0.0% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 773.1905299196924 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.599173326373161, dt = 0.004625455577650121 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.12 us    (1.0%)
   patch tree reduce : 1202.00 ns (0.3%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 389.79 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5467909031684497e-18,-3.047074311618436e-17,-1.5598362445440327e-17)
    sum a = (3.220080452281948e-17,2.6837906896837183e-17,6.22002449546244e-17)
    sum e = 2.592000809612705
    sum de = -6.572975670693371e-19
Info: CFL hydro = 0.006817017391940898 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006817017391940898 cfl multiplier : 0.608765369456695         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6911e+04 |  512 |      1 | 3.028e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 549.9812027191707 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.603798781950811, dt = 0.006817017391940898 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 393.62 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9232662337720364e-18,-3.000090410473777e-17,-1.5230980539293614e-17)
    sum a = (-4.639257727978574e-17,4.1029679653803443e-17,5.2832738184349636e-17)
    sum e = 2.59200088669832
    sum de = -1.480613591800517e-18
Info: CFL hydro = 0.008281460655134125 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008281460655134125 cfl multiplier : 0.73917691297113          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7099e+04 |  512 |      1 | 2.994e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 819.6067162542371 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.610615799342752, dt = 0.008281460655134125 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (0.9%)
   patch tree reduce : 862.00 ns  (0.2%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 741.00 ns  (0.2%)
   LB compute        : 380.99 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5775280347584138e-18,-2.9585220991806825e-17,-1.4833593338023366e-17)
    sum a = (-8.056055822436292e-18,-1.47421137797199e-16,-5.348846365826887e-17)
    sum e = 2.592000953389746
    sum de = -4.675621868843738e-19
Info: CFL hydro = 0.009263507357896232 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009263507357896232 cfl multiplier : 0.8261179419807533        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6663e+04 |  512 |      1 | 3.073e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 970.2690869240328 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.618897259997886, dt = 0.009263507357896232 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.1%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 18.24 us   (4.1%)
   LB compute        : 406.71 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4677525647942566e-18,-3.1733892857238596e-17,-1.5713992607135908e-17)
    sum a = (1.3524337899584183e-16,5.3371369823640437e-17,-1.0123932941974445e-16)
    sum e = 2.592001003199499
    sum de = -5.963111948670274e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011124367948500039
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.782753632217915e-18,-3.0876180518585313e-17,-1.592476150946709e-17)
    sum a = (-1.192015236517463e-16,1.735330629193399e-17,1.1568870861289326e-17)
    sum e = 2.5920007442230895
    sum de = -9.147955830346444e-19
Info: CFL hydro = 0.00496394444735337 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00496394444735337 cfl multiplier : 0.4420393139935845         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1279e+04 |  512 |      1 | 4.540e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 734.6249656336975 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.628160767355782, dt = 0.00496394444735337 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.1%)
   patch tree reduce : 1993.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 436.55 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (75.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.509887692987323e-18,-3.1069385345722235e-17,-1.536124743031775e-17)
    sum a = (1.0983401688147154e-17,-5.730572266715584e-17,4.6228645911305934e-17)
    sum e = 2.592000817990663
    sum de = 7.657177843178875e-19
Info: CFL hydro = 0.0070553869191520594 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0070553869191520594 cfl multiplier : 0.6280262093290564       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6082e+04 |  512 |      1 | 3.184e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 561.3103976097469 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.633124711803135, dt = 0.0070553869191520594 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1954.00 ns (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1021.00 ns (0.2%)
   LB compute        : 396.91 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (72.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.237644527476213e-18,-3.158459821808735e-17,-1.4971910430178203e-17)
    sum a = (-3.0830806657666796e-17,-5.0935818063369e-17,-1.2414288347306624e-16)
    sum e = 2.592000891268976
    sum de = 5.827586677109586e-19
Info: CFL hydro = 0.00845357203255903 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00845357203255903 cfl multiplier : 0.7520174728860377         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5915e+04 |  512 |      1 | 3.217e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 789.5236568373205 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.640180098722287, dt = 0.00845357203255903 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.1%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 418.83 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.7674941291698796e-18,-3.188757851518842e-17,-1.6498521299146418e-17)
    sum a = (2.4542867738119866e-17,9.058379046855691e-17,1.4896677641429433e-16)
    sum e = 2.5920009520252267
    sum de = -1.802486111757151e-18
Info: CFL hydro = 0.009392130001136523 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009392130001136523 cfl multiplier : 0.8346783152573586        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5774e+04 |  512 |      1 | 3.246e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 937.599404688404 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 4.648633670754847, dt = 0.009392130001136523 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.1%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 432.33 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (73.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0678584672649833e-18,-3.053514472523e-17,-1.404101444488215e-17)
    sum a = (1.6510230682609261e-18,3.00228591987306e-17,3.4519262448462486e-17)
    sum e = 2.592000996098528
    sum de = 7.860465750519907e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011194436895080097
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.2083710688191046e-18,-3.082275645653609e-17,-1.4535735896187285e-17)
    sum a = (-8.784379473825155e-17,4.6134970843603184e-18,-7.755124667441215e-17)
    sum e = 2.5920007449487006
    sum de = -5.082197683525802e-19
Info: CFL hydro = 0.0050098408856887105 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0050098408856887105 cfl multiplier : 0.4448927717524529       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1968e+04 |  512 |      1 | 4.278e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 790.3546982735794 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.658025800755983, dt = 0.0050098408856887105 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.1%)
   patch tree reduce : 29.21 us   (6.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 420.86 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.1568311293094236e-18,-3.0947900492295235e-17,-1.5516396761200423e-17)
    sum a = (2.7547495534685495e-16,1.2290168882600483e-16,4.0947713969563536e-17)
    sum e = 2.592000815806757
    sum de = 1.5178830414797062e-18
Info: CFL hydro = 0.0070920654442438984 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0070920654442438984 cfl multiplier : 0.6299285145016352       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6308e+04 |  512 |      1 | 3.139e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 574.4721451785045 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.663035641641671, dt = 0.0070920654442438984 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.48 us    (1.0%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 415.14 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2031391508071642e-18,-2.9786476020074446e-17,-1.4954346354983937e-17)
    sum a = (3.96713911721136e-17,-4.5385570301981204e-17,-1.1662545928992074e-17)
    sum e = 2.592000884774386
    sum de = 3.8624702394796095e-19
Info: CFL hydro = 0.008479692904642138 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008479692904642138 cfl multiplier : 0.7532856763344234        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5892e+04 |  512 |      1 | 3.222e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 792.464222447068 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 4.670127707085915, dt = 0.008479692904642138 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.38 us    (1.1%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 375.73 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8178817826064452e-18,-3.080629013604147e-17,-1.5372956813780593e-17)
    sum a = (-6.04496921269293e-17,1.6135530411798273e-17,-2.891046776976047e-17)
    sum e = 2.592000941861358
    sum de = -1.8295911660692887e-19
Info: CFL hydro = 0.009405832383799736 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009405832383799736 cfl multiplier : 0.835523784222949         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5996e+04 |  512 |      1 | 3.201e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 953.7439149434975 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.6786073999905575, dt = 0.009405832383799736 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (1.1%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 417.99 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (72.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6843761588568605e-18,-3.0536242479929645e-17,-1.5602753464238894e-17)
    sum a = (8.22818375934009e-17,-1.4074678922337825e-17,2.146329988739204e-17)
    sum e = 2.5920009839277007
    sum de = 5.89534931288993e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011830012672190476
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.098906985714688e-18,-3.055435543247373e-17,-1.5406621291236266e-17)
    sum a = (-2.0930522939832663e-18,1.922680764598894e-17,-5.820734519379477e-17)
    sum e = 2.5920007462308234
    sum de = -1.463672932855431e-18
Info: CFL hydro = 0.005013678946522328 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005013678946522328 cfl multiplier : 0.44517459474098303       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2247e+04 |  512 |      1 | 4.181e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 809.9194508266484 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.688013232374357, dt = 0.005013678946522328 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.2%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 403.19 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4706799106599675e-18,-3.02473500348073e-17,-1.6106256953141163e-17)
    sum a = (1.5732142151503313e-16,-3.7774471051132965e-17,8.800187141499993e-17)
    sum e = 2.592000813127429
    sum de = -1.4433441421213278e-18
Info: CFL hydro = 0.007098261878519023 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007098261878519023 cfl multiplier : 0.6301163964939888        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5835e+04 |  512 |      1 | 3.233e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 558.2207904069461 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.693026911320879, dt = 0.007098261878519023 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.99 us    (0.9%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 414.38 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.57242098087452e-19,-3.0707858131306944e-17,-1.5064121824948096e-17)
    sum a = (7.553161244343982e-17,3.714216434413942e-17,-1.1431871074774058e-16)
    sum e = 2.5920008795499263
    sum de = -2.1074179727686992e-18
Info: CFL hydro = 0.008489898804457937 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008489898804457937 cfl multiplier : 0.7534109309959925        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6472e+04 |  512 |      1 | 3.108e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 822.1267095734161 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.700125173199398, dt = 0.008489898804457937 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.65 us    (0.9%)
   patch tree reduce : 1132.00 ns (0.3%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 393.21 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.674348573820765e-19,-3.015898078148616e-17,-1.68439481113003e-17)
    sum a = (-3.202516377087683e-18,6.002229963053551e-17,6.544959886556345e-17)
    sum e = 2.5920009362055754
    sum de = 1.009663273127126e-18
Info: CFL hydro = 0.00941160104606777 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00941160104606777 cfl multiplier : 0.8356072873306616         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6194e+04 |  512 |      1 | 3.162e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 966.6693623090658 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.708615072003855, dt = 0.00941160104606777 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.3%)
   patch tree reduce : 1333.00 ns (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 369.37 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.44 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.54314752221741e-19,-2.966718667604673e-17,-1.5389057216042e-17)
    sum a = (-1.0128616695359583e-18,-2.5833241795725214e-16,-3.9744574818756374e-17)
    sum e = 2.5920009797961314
    sum de = -1.9651164376299768e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011724739313529822
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.601694439531627e-19,-3.09786376238852e-17,-1.5954034968124198e-17)
    sum a = (-3.2312043665716496e-17,-1.1175435576937786e-16,7.208296459726426e-17)
    sum e = 2.592000748127714
    sum de = 1.3484764520288461e-18
Info: CFL hydro = 0.005010795138748733 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005010795138748733 cfl multiplier : 0.4452024291102205        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1790e+04 |  512 |      1 | 4.343e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 780.1944942469172 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.718026673049923, dt = 0.005010795138748733 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 375.38 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1709383462843449e-18,-3.085495726105891e-17,-1.500850225349959e-17)
    sum a = (3.1088413093849355e-17,-1.2411946470614055e-18,6.913219996462771e-17)
    sum e = 2.5920008130772607
    sum de = -8.063753657860939e-19
Info: CFL hydro = 0.007089671264582527 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007089671264582527 cfl multiplier : 0.6301349527401471        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6289e+04 |  512 |      1 | 3.143e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 573.9039381867576 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.723037468188672, dt = 0.007089671264582527 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.96 us    (0.9%)
   patch tree reduce : 1423.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        : 401.90 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.430756093247282e-19,-3.059808266134278e-17,-1.453427222325443e-17)
    sum a = (-2.1211548142940905e-17,-1.232998078637415e-16,-9.22260314992207e-17)
    sum e = 2.592000879479912
    sum de = 1.2197274440461925e-19
Info: CFL hydro = 0.008473979675745886 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008473979675745886 cfl multiplier : 0.7534233018267648        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6207e+04 |  512 |      1 | 3.159e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 807.9304101898506 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.730127139453255, dt = 0.008473979675745886 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (1.1%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 385.13 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1943571132100317e-18,-3.2072001304728205e-17,-1.5795958291375812e-17)
    sum a = (5.1509577853048326e-17,2.761072620538485e-17,-1.688434548424711e-16)
    sum e = 2.5920009378038587
    sum de = -1.4365678785432934e-18
Info: CFL hydro = 0.009397185228649891 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009397185228649891 cfl multiplier : 0.8356155345511764        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5565e+04 |  512 |      1 | 3.289e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 927.4060895168997 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.738601119129001, dt = 0.009397185228649891 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 1272.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 406.10 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3418766925686897e-19,-3.128015424805341e-17,-1.7780698788327775e-17)
    sum a = (2.9964312281416385e-17,5.0689921010649284e-17,-1.4728062519564489e-16)
    sum e = 2.5920009849473002
    sum de = 1.4230153513872246e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010772482339281558
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.854691731421724e-19,-3.113378695476787e-17,-1.7593348652922282e-17)
    sum a = (2.394568918151485e-17,9.039644033315142e-17,5.158568884555681e-17)
    sum e = 2.59200075035067
    sum de = -3.7947076036992655e-19
Info: CFL hydro = 0.005008468507680927 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005008468507680927 cfl multiplier : 0.44520517818372546       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2033e+04 |  512 |      1 | 4.255e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 795.0583047748412 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.747998304357651, dt = 0.005008468507680927 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.34 us    (1.0%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 418.99 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (72.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.7470027081099033e-19,-3.0447324349258675e-17,-1.6498521299146418e-17)
    sum a = (-8.922550198686708e-17,-2.846551119817242e-17,-1.7452836051368158e-17)
    sum e = 2.592000816212719
    sum de = 9.825582188149884e-19
Info: CFL hydro = 0.007090388085373201 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007090388085373201 cfl multiplier : 0.630136785455817         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5681e+04 |  512 |      1 | 3.265e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 552.2075694267838 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.753006772865332, dt = 0.007090388085373201 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 417.21 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.19 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3612158275555508e-18,-3.108109472918508e-17,-1.674734569773184e-17)
    sum a = (2.3922270414589165e-17,-7.645056462890487e-17,7.472343056813546e-17)
    sum e = 2.59200088527846
    sum de = -1.260385025514399e-18
Info: CFL hydro = 0.008481682537195398 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008481682537195398 cfl multiplier : 0.7534245236372114        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5540e+04 |  512 |      1 | 3.295e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 774.7200005870943 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.760097160950705, dt = 0.008481682537195398 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.2%)
   patch tree reduce : 1704.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 762.00 ns  (0.2%)
   LB compute        : 383.83 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.318364664277155e-19,-3.192417033850981e-17,-1.5713992607135908e-17)
    sum a = (-7.217663966496701e-17,3.980019439020488e-17,-4.591249255780916e-17)
    sum e = 2.5920009471878847
    sum de = 5.488773498207866e-19
Info: CFL hydro = 0.00940378027778201 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00940378027778201 cfl multiplier : 0.8356163490914742         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5764e+04 |  512 |      1 | 3.248e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 940.1115845122042 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.768578843487901, dt = 0.00940378027778201 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.2%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 381.03 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.885210737517795e-18,-3.0946436819362377e-17,-1.671514489320902e-17)
    sum a = (-4.908573547623973e-17,-3.9741647472890664e-17,-4.652138049787702e-17)
    sum e = 2.5920009975061573
    sum de = -1.1316360175317453e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010508748740879996
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7915356698150476e-18,-3.137968400748758e-17,-1.671514489320902e-17)
    sum a = (3.828968392349807e-17,7.909688529150749e-17,-9.444203231956382e-17)
    sum e = 2.592000752471001
    sum de = -1.4501204056993622e-18
Info: CFL hydro = 0.005010368594685925 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005010368594685925 cfl multiplier : 0.4452054496971581        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1852e+04 |  512 |      1 | 4.320e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 783.64353126935 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 4.777982623765682, dt = 0.005010368594685925 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.2%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 417.51 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2426583199942608e-18,-3.042097823646728e-17,-1.742063524684534e-17)
    sum a = (8.360499792470221e-18,-5.439008618490781e-17,7.40852691694105e-17)
    sum e = 2.592000821234172
    sum de = -5.624298769768554e-19
Info: CFL hydro = 0.007091679041800803 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007091679041800803 cfl multiplier : 0.630136966464772         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5653e+04 |  512 |      1 | 3.271e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 551.4407834771357 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.782992992360368, dt = 0.007091679041800803 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.2%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 412.70 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0099343236702473e-18,-3.117330612395497e-17,-1.6480957223952152e-17)
    sum a = (8.100551479595097e-17,2.6439787859100506e-17,-1.0996282009956281e-16)
    sum e = 2.592000893439287
    sum de = -1.9651164376299768e-19
Info: CFL hydro = 0.00847885694492158 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00847885694492158 cfl multiplier : 0.753424644309848          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6542e+04 |  512 |      1 | 3.095e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 824.8150372624127 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.790084671402169, dt = 0.00847885694492158 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.99 us    (1.0%)
   patch tree reduce : 1803.00 ns (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 377.66 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.1468968056391765e-19,-3.070200343957552e-17,-1.8093924795958838e-17)
    sum a = (-1.252435655185735e-16,-9.320669236423385e-18,4.303198422594967e-17)
    sum e = 2.5920009575817713
    sum de = 6.132518538121134e-19
Info: CFL hydro = 0.00938347500755402 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00938347500755402 cfl multiplier : 0.8356164295398987         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6093e+04 |  512 |      1 | 3.182e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 959.4118598864187 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.79856352834709, dt = 0.00938347500755402 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.01 us    (1.0%)
   patch tree reduce : 1122.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 388.13 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.199900418081713e-18,-3.0953755184026653e-17,-1.7022516209108662e-17)
    sum a = (1.1236324370944572e-16,3.325464903447539e-17,-6.37927211055711e-17)
    sum e = 2.5920010078486433
    sum de = -2.320870275476783e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012285931530100649
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2046028237400197e-18,-3.075615933809117e-17,-1.754797479200376e-17)
    sum a = (2.910952728862881e-17,-1.9250226412914628e-16,6.984647235586117e-17)
    sum e = 2.592000754093704
    sum de = 1.7059243557701609e-18
Info: CFL hydro = 0.004989937833332636 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004989937833332636 cfl multiplier : 0.44520547651329956       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2410e+04 |  512 |      1 | 4.126e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 818.7980300859006 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.807947003354644, dt = 0.004989937833332636 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (0.8%)
   patch tree reduce : 232.13 us  (32.6%)
   gen split merge   : 861.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.1%)
   LB compute        : 462.76 us  (64.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5090467937739493e-18,-3.2777491658364523e-17,-1.6549749851796357e-17)
    sum a = (-9.393267413893014e-17,1.7019588863242952e-17,-1.0902606942253534e-16)
    sum e = 2.5920008251005373
    sum de = 1.999844788467403e-18
Info: CFL hydro = 0.007055751933837177 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007055751933837177 cfl multiplier : 0.6301369843421997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6231e+04 |  512 |      1 | 3.154e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 569.4803246597401 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.812936941187977, dt = 0.007055751933837177 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.24 us    (1.0%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 386.16 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3579770948300993e-18,-3.1975398891159744e-17,-1.782753632217915e-17)
    sum a = (-4.5807108106643566e-17,4.0953568661294955e-18,-1.5506736519843577e-16)
    sum e = 2.592000898071638
    sum de = -6.030874584450618e-19
Info: CFL hydro = 0.008426155355006069 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008426155355006069 cfl multiplier : 0.753424656228133         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5809e+04 |  512 |      1 | 3.239e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 784.3028125493676 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.819992693121814, dt = 0.008426155355006069 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.4%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 400.72 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.420915030942883e-18,-3.1978326237025454e-17,-1.9247299067048918e-17)
    sum a = (8.501012394024343e-18,1.4654878872921717e-16,-9.297250469497697e-18)
    sum e = 2.592000961088578
    sum de = -4.980553729855286e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010661359450536007
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3111395609787257e-18,-3.141627583080897e-17,-1.8669148258571022e-17)
    sum a = (3.704848927643667e-17,-7.049634313804897e-17,-7.602902682424251e-17)
    sum e = 2.5920007540597387
    sum de = -2.541098841762901e-20
Info: CFL hydro = 0.00466806548017947 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00466806548017947 cfl multiplier : 0.417808218742711          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2509e+04 |  512 |      1 | 4.093e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 741.128343483547 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 4.8284188484768205, dt = 0.00466806548017947 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.72 us    (0.9%)
   patch tree reduce : 922.00 ns  (0.2%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 681.00 ns  (0.2%)
   LB compute        : 396.30 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1369624819689293e-18,-3.2676498225997496e-17,-1.9314628021960266e-17)
    sum a = (-2.088954009771271e-17,-6.590919216648006e-18,-1.4753823163182745e-18)
    sum e = 2.592000817168193
    sum de = 3.7777669447541795e-19
Info: CFL hydro = 0.006832742687210451 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006832742687210451 cfl multiplier : 0.611872145828474         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6844e+04 |  512 |      1 | 3.040e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 552.8634987906474 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.833086913957, dt = 0.006832742687210451 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.87 us    (1.0%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 601.00 ns  (0.2%)
   LB compute        : 370.19 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1991685816152852e-18,-3.253744929737623e-17,-1.9125814213621915e-17)
    sum a = (2.3385980651990935e-16,-8.06919228700867e-17,2.2493725632122262e-17)
    sum e = 2.5920008897827094
    sum de = 4.1504614415460717e-19
Info: CFL hydro = 0.008272701524528338 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008272701524528338 cfl multiplier : 0.7412480972189828        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6650e+04 |  512 |      1 | 3.075e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 799.8910777398295 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.83991965664421, dt = 0.008272701524528338 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (0.8%)
   patch tree reduce : 772.00 ns  (0.2%)
   gen split merge   : 591.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 461.00 ns  (0.1%)
   LB compute        : 386.90 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.58 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.122855264994008e-19,-3.342589876761948e-17,-1.891358163835788e-17)
    sum a = (1.086630785351872e-17,1.3207891811500838e-16,-1.3685927391371423e-16)
    sum e = 2.5920009528647685
    sum de = 8.809142651444724e-20
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010418778349726982
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.1908069936248396e-19,-3.2616487635750424e-17,-1.959565322506851e-17)
    sum a = (-5.416760789911379e-17,2.875092742007923e-17,3.764566783304168e-17)
    sum e = 2.5920007542914374
    sum de = 1.6263032587282567e-18
Info: CFL hydro = 0.004616416167030041 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004616416167030041 cfl multiplier : 0.4137493657396609        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2953e+04 |  512 |      1 | 3.953e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 753.4569282334392 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.848192358168738, dt = 0.004616416167030041 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (0.8%)
   patch tree reduce : 481.00 ns  (0.1%)
   gen split merge   : 571.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 621.00 ns  (0.2%)
   LB compute        : 367.64 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.54 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.016154933634883e-18,-3.295166873737432e-17,-1.8653047856309614e-17)
    sum a = (2.3418766925686896e-20,3.908592199897143e-17,-1.276674078953821e-16)
    sum e = 2.592000815722403
    sum de = 6.132518538121134e-19
Info: CFL hydro = 0.006795960941601463 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006795960941601463 cfl multiplier : 0.6091662438264406        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5774e+04 |  512 |      1 | 3.246e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 511.9987250881357 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.852808774335768, dt = 0.006795960941601463 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.2%)
   patch tree reduce : 1884.00 ns (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 372.56 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.460029551904391e-19,-3.266917986133322e-17,-1.9944007383088102e-17)
    sum a = (1.4774900053415862e-16,-5.552589638080363e-17,-1.6557068216460634e-17)
    sum e = 2.5920008868294095
    sum de = -2.9341221292888964e-18
Info: CFL hydro = 0.008249380157295982 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008249380157295982 cfl multiplier : 0.7394441625509603        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6577e+04 |  512 |      1 | 3.089e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 792.1079424146643 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.85960473527737, dt = 0.008249380157295982 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.68 us    (0.9%)
   patch tree reduce : 1283.00 ns (0.3%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 387.24 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.67 us    (75.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.555168292539994e-19,-3.3461026918008005e-17,-1.9673227890509847e-17)
    sum a = (8.34410665562224e-17,6.4249387060622e-17,7.715312763667547e-17)
    sum e = 2.5920009479448742
    sum de = 5.759824041329242e-19
Info: CFL hydro = 0.009220928727797183 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009220928727797183 cfl multiplier : 0.8262961083673069        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6387e+04 |  512 |      1 | 3.124e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 950.5007792376576 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.867854115434666, dt = 0.009220928727797183 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1183.00 ns (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1021.00 ns (0.3%)
   LB compute        : 389.12 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5142611285972468e-18,-3.2398400368754964e-17,-1.8595232775461823e-17)
    sum a = (-1.379833747261472e-16,-5.5004828816707095e-17,-1.1708212524497164e-16)
    sum e = 2.592000993285637
    sum de = 3.0696474008495844e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01210270212422911
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3026689102413336e-19,-3.294727771857575e-17,-1.9423671655457996e-17)
    sum a = (-9.57827567260594e-18,-6.981719889720406e-17,-1.2012656494531093e-16)
    sum e = 2.592000754899139
    sum de = 1.734723475976807e-18
Info: CFL hydro = 0.004937656017367021 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004937656017367021 cfl multiplier : 0.4420987027891023        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2228e+04 |  512 |      1 | 4.187e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 792.8113880516132 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.877075044162463, dt = 0.004937656017367021 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (1.0%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 413.85 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.191866018332106e-19,-3.34185804029552e-17,-2.009915671397078e-17)
    sum a = (9.025592773159729e-17,3.095960987575808e-17,-4.113506410496903e-17)
    sum e = 2.592000822705441
    sum de = 1.5178830414797062e-18
Info: CFL hydro = 0.007017927807651233 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007017927807651233 cfl multiplier : 0.6280658018594015        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6557e+04 |  512 |      1 | 3.092e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 574.8082662714032 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.882012700179829, dt = 0.007017927807651233 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.84 us    (1.0%)
   patch tree reduce : 1203.00 ns (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 368.06 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.695116215363196e-18,-3.292971364338149e-17,-2.015038526662072e-17)
    sum a = (-5.833614841188606e-17,2.2928143758593756e-16,-1.1171922761898932e-16)
    sum e = 2.5920008900007057
    sum de = 9.215718466126788e-19
Info: CFL hydro = 0.008410358565692356 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008410358565692356 cfl multiplier : 0.7520438679062676        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6557e+04 |  512 |      1 | 3.092e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 816.9803889946595 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.889030627987481, dt = 0.008410358565692356 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.97 us    (1.0%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 386.14 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.428140134241313e-19,-3.0148735070956165e-17,-2.135059707156217e-17)
    sum a = (-1.0485752890976307e-16,1.3323521973196416e-16,2.0643643044992998e-17)
    sum e = 2.592000945862623
    sum de = -6.776263578034403e-20
Info: CFL hydro = 0.009346578907792362 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009346578907792362 cfl multiplier : 0.8346959119375118        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6314e+04 |  512 |      1 | 3.138e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 964.7580963763743 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.897440986553173, dt = 0.009346578907792362 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.2%)
   patch tree reduce : 1363.00 ns (0.3%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 373.38 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4689048508673714e-19,-2.933346924735569e-17,-2.0612905913403034e-17)
    sum a = (1.3084065081381268e-16,-2.509906345260493e-17,2.166235940626038e-18)
    sum e = 2.592000986503259
    sum de = -1.1926223897340549e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011743148450913588
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.449052004907975e-19,-3.0183863221344697e-17,-2.0589487146477346e-17)
    sum a = (-5.0666502243723596e-17,-6.86169870922626e-18,-7.556065148572877e-17)
    sum e = 2.5920007556105937
    sum de = -3.6591823321385775e-19
Info: CFL hydro = 0.004990181541790577 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004990181541790577 cfl multiplier : 0.4448986373125039        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2570e+04 |  512 |      1 | 4.073e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 826.0922303035684 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.906787565460966, dt = 0.004990181541790577 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (1.1%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 405.91 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 5.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.832207125075259e-19,-3.0251192176256045e-17,-2.148525498138487e-17)
    sum a = (-2.7423376069979356e-17,-1.0386223131542137e-17,8.629815612115621e-18)
    sum e = 2.5920008208705076
    sum de = -3.604972223514302e-18
Info: CFL hydro = 0.007072042128125648 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007072042128125648 cfl multiplier : 0.6299324248750026        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6757e+04 |  512 |      1 | 3.055e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 587.9640296681955 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.911777747002756, dt = 0.007072042128125648 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.41 us    (1.1%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 682.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 373.49 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.9299618247168323e-19,-3.0368286010884484e-17,-2.11903248854145e-17)
    sum a = (6.23641763231042e-17,-1.9734409419103204e-16,-9.100532827321927e-17)
    sum e = 2.592000884719906
    sum de = 1.5720931501039814e-18
Info: CFL hydro = 0.008469117880379858 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008469117880379858 cfl multiplier : 0.7532882832500016        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6071e+04 |  512 |      1 | 3.186e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 799.1126441437654 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.918849789130882, dt = 0.008469117880379858 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.0%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 420.90 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.434928986551955e-19,-3.2732117797446006e-17,-2.2331989773041738e-17)
    sum a = (1.4601601178165778e-17,-9.871010259177026e-17,-2.7856623258104564e-17)
    sum e = 2.5920009380901456
    sum de = -5.421010862427522e-19
Info: CFL hydro = 0.009396038235503718 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009396038235503718 cfl multiplier : 0.8355255221666678        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5963e+04 |  512 |      1 | 3.207e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 950.5957187922648 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.927318907011262, dt = 0.009396038235503718 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.1%)
   patch tree reduce : 1984.00 ns (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 398.17 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0538445116559103e-19,-3.305998053440562e-17,-2.2227337158342574e-17)
    sum a = (-6.173772430784207e-17,4.787966897956686e-17,-1.715424677306565e-17)
    sum e = 2.5920009772744326
    sum de = 6.505213034913027e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011256400113558501
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0465261469916331e-19,-3.228130653412653e-17,-2.2186720234455835e-17)
    sum a = (5.934901008142202e-17,-6.420254952677062e-17,-4.8956932258148456e-17)
    sum e = 2.5920007568388437
    sum de = 2.358139725155972e-18
Info: CFL hydro = 0.0050006903137654385 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0050006903137654385 cfl multiplier : 0.4451751740555559       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2567e+04 |  512 |      1 | 4.074e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 830.2235130864888 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.936714945246766, dt = 0.0050006903137654385 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.01 us    (1.0%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 372.90 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.542618009863776e-19,-3.2994115252427126e-17,-2.2698639842722024e-17)
    sum a = (7.587680483922554e-18,9.491040765807757e-17,7.034997584476344e-17)
    sum e = 2.5920008186773114
    sum de = -8.131516293641283e-20
Info: CFL hydro = 0.007074096066420643 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007074096066420643 cfl multiplier : 0.6301167827037039        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6659e+04 |  512 |      1 | 3.074e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 585.7320319065226 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.941715635560531, dt = 0.007074096066420643 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.76 us    (0.9%)
   patch tree reduce : 911.00 ns  (0.2%)
   gen split merge   : 572.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 711.00 ns  (0.2%)
   LB compute        : 386.90 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.808165584430091e-19,-3.214957597016954e-17,-2.1844769645517487e-17)
    sum a = (2.0218885159878353e-16,5.919678809640505e-17,3.2376445274762134e-17)
    sum e = 2.5920008799593965
    sum de = -1.4094628242311558e-18
Info: CFL hydro = 0.008453097529042329 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008453097529042329 cfl multiplier : 0.7534111884691358        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6494e+04 |  512 |      1 | 3.104e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 820.4112257393442 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.948789731626952, dt = 0.008453097529042329 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.14 us    (1.1%)
   patch tree reduce : 1383.00 ns (0.4%)
   gen split merge   : 591.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 692.00 ns  (0.2%)
   LB compute        : 367.93 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9207593375130127e-18,-3.163729044367014e-17,-2.1787869360252733e-17)
    sum a = (7.768736825716771e-17,7.949500432924417e-17,-5.1170005732625865e-17)
    sum e = 2.5920009320865067
    sum de = 2.3445871979999033e-18
Info: CFL hydro = 0.009371223841532788 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009371223841532788 cfl multiplier : 0.8356074589794238        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6353e+04 |  512 |      1 | 3.131e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 971.9455977800613 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.957242829155994, dt = 0.009371223841532788 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 410.46 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.45 us    (74.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.016629914615043e-18,-3.1053284943460823e-17,-2.234132068798869e-17)
    sum a = (-2.16945602107832e-17,6.576575221906022e-17,1.906170533916285e-16)
    sum e = 2.5920009725369804
    sum de = 9.75781955236954e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011473374000488703
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6148516945462276e-18,-3.105401677992725e-17,-2.1347578246138158e-17)
    sum a = (-1.0701205546692626e-16,-1.4461088576611657e-18,-1.8143689675675923e-17)
    sum e = 2.5920007586361336
    sum de = -1.666960840196463e-18
Info: CFL hydro = 0.0049932569600277515 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0049932569600277515 cfl multiplier : 0.4452024863264746       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2655e+04 |  512 |      1 | 4.046e-02 | 0.0% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 833.8862269046939 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.966614052997526, dt = 0.0049932569600277515 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (1.1%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 392.63 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (74.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.730793243101547e-18,-3.1529710483105266e-17,-2.243206840982573e-17)
    sum a = (-3.4416805343162607e-17,6.434306212832474e-18,1.2915449959516323e-16)
    sum e = 2.5920008186981005
    sum de = 1.4365678785432934e-18
Info: CFL hydro = 0.007067815596396634 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007067815596396634 cfl multiplier : 0.6301349908843163        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6227e+04 |  512 |      1 | 3.155e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 569.7014728161911 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.971607309957554, dt = 0.007067815596396634 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 426.24 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 us    (75.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6195541002045343e-18,-3.148214111278746e-17,-2.115784964221677e-17)
    sum a = (1.6687042372898197e-16,1.1564187107904189e-16,-3.9946561683490423e-17)
    sum e = 2.5920008803569945
    sum de = 1.8973538018496328e-18
Info: CFL hydro = 0.008453072256246115 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008453072256246115 cfl multiplier : 0.7534233272562109        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6370e+04 |  512 |      1 | 3.128e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 813.536041414655 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 4.978675125553951, dt = 0.008453072256246115 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.2%)
   patch tree reduce : 1993.00 ns (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 385.11 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.632104382880752e-18,-2.9964312281416385e-17,-2.2017757490269338e-17)
    sum a = (-6.155037417243658e-17,6.205973235307028e-19,-5.725888513330446e-17)
    sum e = 2.5920009348537145
    sum de = 1.7618285302889447e-19
Info: CFL hydro = 0.009380483777761071 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009380483777761071 cfl multiplier : 0.8356155515041405        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2662e+04 |  512 |      1 | 4.044e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 752.5763186081481 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.987128197810197, dt = 0.009380483777761071 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.28 us    (1.1%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 731.00 ns  (0.2%)
   LB compute        : 379.22 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2050232733467068e-18,-3.0510994121837885e-17,-2.2709251471485225e-17)
    sum a = (-1.2522014675164783e-16,1.759334865292228e-18,3.238815465822498e-17)
    sum e = 2.5920009793288785
    sum de = 4.0657581468206416e-20
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01048916213209682
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.042555577799754e-18,-3.0732740571165483e-17,-2.2239686898713544e-17)
    sum a = (-2.4062783016143285e-17,4.2572390925033066e-17,1.5331095767900927e-16)
    sum e = 2.592000760779508
    sum de = -1.2332799712022613e-18
Info: CFL hydro = 0.0050030703688774035 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0050030703688774035 cfl multiplier : 0.44520518383471347      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2608e+04 |  512 |      1 | 4.061e-02 | 0.0% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 831.5505036456973 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.996508681587958, dt = 0.003491318412041977 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.17 us    (1.0%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 393.19 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4962941869849374e-18,-2.99489437156214e-17,-2.1176054074319162e-17)
    sum a = (1.1381520725883831e-17,-7.831235659949698e-17,-8.518576469218608e-18)
    sum e = 2.5920007899864195
    sum de = 6.505213034913027e-19
Info: CFL hydro = 0.007084130165399018 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007084130165399018 cfl multiplier : 0.6301367892231423        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5993e+04 |  512 |      1 | 3.201e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 392.5943596695817 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 678                                                     [SPH][rank=0]
Info: time since start : 734.826045915 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14978428390188184 max=0.15026263029538017 delta=0.00047834639349833563
Number of particle pairs: 130816
Distance min=0.146043 max=1.990430 mean=0.806480
---------------- t = 5, dt = 0.007084130165399018 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.04 us   (1.7%)
   patch tree reduce : 1844.00 ns (0.3%)
   gen split merge   : 571.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.2%)
   LB compute        : 575.46 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (73.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6616892283976012e-18,-3.067638916325055e-17,-2.1477753657603986e-17)
    sum a = (3.852387159275494e-18,-3.6029772915169286e-17,1.2812992854216442e-16)
    sum e = 2.5920008863321353
    sum de = -1.2197274440461925e-19
Info: CFL hydro = 0.008475420850848502 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008475420850848502 cfl multiplier : 0.7534245261487614        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5554e+04 |  512 |      1 | 3.292e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 774.7290954191947 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.007084130165399, dt = 0.008475420850848502 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.2%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.2%)
   LB compute        : 423.03 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6353431156062036e-18,-3.10393800505987e-17,-1.997620818761092e-17)
    sum a = (1.659102542850288e-16,1.0948493088698552e-16,4.156245660136282e-17)
    sum e = 2.592000944673889
    sum de = -1.8973538018496328e-19
Info: CFL hydro = 0.009408359017590899 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009408359017590899 cfl multiplier : 0.8356163507658408        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5758e+04 |  512 |      1 | 3.249e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 939.0901780062953 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.015559551016247, dt = 0.009408359017590899 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.2%)
   patch tree reduce : 1864.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 409.50 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.902572488599266e-18,-2.932981006502355e-17,-1.987558067347711e-17)
    sum a = (-8.454174860172969e-17,-5.5244871177695385e-17,-1.3806534041038708e-16)
    sum e = 2.592000992842459
    sum de = 1.4907779871675686e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010437014478503044
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.617467653552197e-18,-3.0363894992085916e-17,-2.0855875620257037e-17)
    sum a = (1.2781962988039906e-16,-7.608428047745779e-17,5.775067923874388e-17)
    sum e = 2.592000762691555
    sum de = -4.2690460541616737e-19
Info: CFL hydro = 0.0050127777210362936 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0050127777210362936 cfl multiplier : 0.44520545025528024      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2576e+04 |  512 |      1 | 4.071e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 831.9578750769961 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.024967910033839, dt = 0.0050127777210362936 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.3%)
   patch tree reduce : 1904.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 440.01 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.261172357148847e-18,-3.044878802219153e-17,-1.96112047499801e-17)
    sum a = (1.6802965269180347e-17,-2.4550917939250572e-17,-6.45187028802674e-17)
    sum e = 2.592000827265328
    sum de = 1.1248597539537109e-18
Info: CFL hydro = 0.007093619980285017 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007093619980285017 cfl multiplier : 0.6301369668368535        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5978e+04 |  512 |      1 | 3.204e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 563.1486631267084 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.029980687754875, dt = 0.007093619980285017 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1893.00 ns (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 387.79 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.48 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.095045479269755e-18,-3.082056094713681e-17,-2.024625584372275e-17)
    sum a = (-3.8945409397417304e-17,-1.4137909593037179e-16,-4.049397536037835e-17)
    sum e = 2.5920008953767413
    sum de = -3.1848438816761693e-19
Info: CFL hydro = 0.008478126307957936 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008478126307957936 cfl multiplier : 0.7534246445579024        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6211e+04 |  512 |      1 | 3.158e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 808.5440020172908 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.0370743077351605, dt = 0.008478126307957936 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.1%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 399.06 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.361196462559364e-18,-3.218324044762522e-17,-2.0545576958491686e-17)
    sum a = (1.869285976008328e-16,-1.823736474337867e-18,-8.7454457738112e-17)
    sum e = 2.5920009560986257
    sum de = -9.486769009248164e-19
Info: CFL hydro = 0.009400561597625395 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009400561597625395 cfl multiplier : 0.8356164297052683        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6150e+04 |  512 |      1 | 3.170e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 962.7209738200045 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.045552434043119, dt = 0.009400561597625395 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.4%)
   patch tree reduce : 1943.00 ns (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 405.74 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.141626157634861e-18,-3.164241329893513e-17,-2.1617351463575073e-17)
    sum a = (2.435551760271437e-17,7.443069598156437e-17,-7.437214906425016e-17)
    sum e = 2.5920010050201125
    sum de = -1.4907779871675686e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01106131332278945
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.365330625871662e-18,-3.136870646049117e-17,-2.1601251061313665e-17)
    sum a = (1.8250245065187798e-16,2.3676373361869452e-17,7.229080615372973e-17)
    sum e = 2.592000764296828
    sum de = -3.7269449679189215e-19
Info: CFL hydro = 0.005008327089949883 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005008327089949883 cfl multiplier : 0.44520547656842274       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2239e+04 |  512 |      1 | 4.183e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 808.9514827453338 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.054952995640744, dt = 0.005008327089949883 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.4%)
   patch tree reduce : 2.17 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 417.92 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.148267217206184e-18,-3.1565570469960227e-17,-2.0457390664287145e-17)
    sum a = (7.657936784699614e-17,-1.0315966830765077e-17,9.541098380111412e-17)
    sum e = 2.592000831902163
    sum de = -4.87890977618477e-19
Info: CFL hydro = 0.007088590497854899 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007088590497854899 cfl multiplier : 0.6301369843789485        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5837e+04 |  512 |      1 | 3.233e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 557.7017932259896 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.059961322730694, dt = 0.007088590497854899 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.3%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 411.93 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.35 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.360499792470221e-18,-3.142286235900682e-17,-1.971604032379587e-17)
    sum a = (-1.208174185696187e-16,2.2985519737561687e-17,5.673489022334222e-17)
    sum e = 2.592000901909533
    sum de = -1.1248597539537109e-18
Info: CFL hydro = 0.008473662248709365 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008473662248709365 cfl multiplier : 0.7534246562526322        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5983e+04 |  512 |      1 | 3.203e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 796.5997553685775 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.067049913228549, dt = 0.008473662248709365 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 392.62 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.6011649271779935e-18,-3.1434571742469663e-17,-1.9349756172348798e-17)
    sum a = (-3.910934076589712e-18,-3.694310482527108e-17,-6.964155814526141e-18)
    sum e = 2.5920009627796814
    sum de = 6.810144895924575e-19
Info: CFL hydro = 0.009395406270696766 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009395406270696766 cfl multiplier : 0.8356164375017547        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6475e+04 |  512 |      1 | 3.108e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 981.571002078798 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 5.075523575477258, dt = 0.009395406270696766 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.4%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 402.78 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (73.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.183706754454455e-18,-3.192270666557695e-17,-1.9662250343513432e-17)
    sum a = (6.538519725651781e-17,-1.2054810274997329e-17,-2.963937689032248e-17)
    sum e = 2.5920010095079045
    sum de = 1.6093625997831706e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011218440826861471
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.488150724488385e-18,-3.184805934600132e-17,-1.9700671758000887e-17)
    sum a = (-5.194282504117354e-17,1.5280745419010699e-18,3.264868844027324e-17)
    sum e = 2.5920007652035357
    sum de = -8.605854744103691e-19
Info: CFL hydro = 0.005005723821850017 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005005723821850017 cfl multiplier : 0.44520547916725156       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2365e+04 |  512 |      1 | 4.141e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 816.8472439868883 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.084918981747955, dt = 0.005005723821850017 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.2%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 415.98 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (73.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.498707821878113e-18,-3.178512140988854e-17,-1.935744045524629e-17)
    sum a = (7.564261716996867e-18,-3.579558524591242e-17,8.722319741472084e-17)
    sum e = 2.592000833914791
    sum de = 3.7269449679189215e-19
Info: CFL hydro = 0.007084946546138049 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007084946546138049 cfl multiplier : 0.630136986111501         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6301e+04 |  512 |      1 | 3.141e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 573.7391529666128 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.089924705569805, dt = 0.007084946546138049 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1944.00 ns (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 381.52 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.844866470498423e-18,-3.206614661299678e-17,-1.8614992360055373e-17)
    sum a = (1.2880321809127792e-18,-1.0668419272996665e-16,2.36090444069581e-17)
    sum e = 2.5920009027625692
    sum de = -1.892695120639734e-18
Info: CFL hydro = 0.008468435767692658 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008468435767692658 cfl multiplier : 0.7534246574076674        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6283e+04 |  512 |      1 | 3.144e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 811.1739551626931 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.097009652115943, dt = 0.008468435767692658 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1864.00 ns (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 388.00 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.8046154648448984e-18,-3.333076002698387e-17,-1.867280744090316e-17)
    sum a = (-6.515100958726095e-17,3.2411573425150666e-17,7.292311286072328e-17)
    sum e = 2.592000960422127
    sum de = -5.624298769768554e-19
Info: CFL hydro = 0.009387926392690496 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009387926392690496 cfl multiplier : 0.8356164382717782        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5941e+04 |  512 |      1 | 3.212e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 949.1943905392799 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.105478087883636, dt = 0.009387926392690496 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.2%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 409.61 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.935193742728773e-18,-3.2218368598013744e-17,-1.7746302474405672e-17)
    sum a = (3.6931395441808235e-17,-1.738843444232252e-17,-1.0510635330834849e-16)
    sum e = 2.592001002092235
    sum de = -7.453889935837843e-20
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011039470217034802
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.428451521101053e-18,-3.2474511361263446e-17,-1.8587182574331118e-17)
    sum a = (1.976543928527974e-17,-7.650911154621909e-17,-3.1451403981197503e-17)
    sum e = 2.5920007655515507
    sum de = 1.0842021724855044e-18
Info: CFL hydro = 0.0050009697188655436 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0050009697188655436 cfl multiplier : 0.44520547942392613      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2652e+04 |  512 |      1 | 4.047e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 835.1728999651091 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.114866014276327, dt = 0.0050009697188655436 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.2%)
   patch tree reduce : 1724.00 ns (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 419.80 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.4240605023024866e-18,-3.313023683518268e-17,-1.8408614476522756e-17)
    sum a = (-4.309053114326389e-17,1.5105104667068048e-18,-7.405599571075339e-17)
    sum e = 2.5920008321308794
    sum de = 1.4230153513872246e-19
Info: CFL hydro = 0.007077783288208895 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007077783288208895 cfl multiplier : 0.6301369862826175        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5756e+04 |  512 |      1 | 3.250e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 554.0311673166025 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.119866983995192, dt = 0.007077783288208895 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 390.84 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.948366799124471e-18,-3.288873080126153e-17,-1.9072390151572695e-17)
    sum a = (4.1217029789208935e-18,-1.1341708822110163e-16,2.455457712158271e-17)
    sum e = 2.5920008965950703
    sum de = 1.734723475976807e-18
Info: CFL hydro = 0.008462792921443104 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008462792921443104 cfl multiplier : 0.753424657521745         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6479e+04 |  512 |      1 | 3.107e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 820.0744225826699 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.126944767283401, dt = 0.008462792921443104 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 378.86 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.0976614382757255e-18,-3.4387531884505494e-17,-1.8569618499136852e-17)
    sum a = (5.543222131310088e-17,4.2469933819733186e-17,-1.5738582312407878e-16)
    sum e = 2.592000948943683
    sum de = -5.963111948670274e-19
Info: CFL hydro = 0.00938807014099686 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00938807014099686 cfl multiplier : 0.83561643834783           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6391e+04 |  512 |      1 | 3.124e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 975.3027108761863 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.135407560204844, dt = 0.00938807014099686 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 380.31 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.975865197988983e-18,-3.325318536154254e-17,-2.085148460145847e-17)
    sum a = (-2.1475009270854884e-17,-1.2622715372945236e-17,-1.329981047168416e-16)
    sum e = 2.592000985288716
    sum de = 8.402566836762659e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011345801210336895
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.532372299333789e-18,-3.348590935786655e-17,-2.0673648340116534e-17)
    sum a = (-1.3397876558185472e-16,2.1135437150432423e-17,-1.4894335764736866e-17)
    sum e = 2.592000765797511
    sum de = 8.74138001566438e-19
Info: CFL hydro = 0.005004557569512515 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005004557569512515 cfl multiplier : 0.44520547944927663       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2215e+04 |  512 |      1 | 4.192e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 806.282560256954 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 5.144795630345841, dt = 0.005004557569512515 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.3%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 381.78 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.45 us    (72.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.36582497184801e-18,-3.3295631876595345e-17,-2.0203809328669942e-17)
    sum a = (-1.4913070778277416e-16,-5.461256447070184e-17,-1.2644963201524638e-16)
    sum e = 2.5920008276782918
    sum de = -2.371692252312041e-19
Info: CFL hydro = 0.007085348346541112 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007085348346541112 cfl multiplier : 0.6301369862995178        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6281e+04 |  512 |      1 | 3.145e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 572.9044773732189 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.149800187915353, dt = 0.007085348346541112 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (1.1%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 390.65 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (72.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.27685230980357e-18,-3.3819626786557587e-17,-2.1391579913682125e-17)
    sum a = (-2.4800474174302423e-17,-6.464750609835868e-17,4.364672685774895e-18)
    sum e = 2.5920008865420128
    sum de = -5.963111948670274e-19
Info: CFL hydro = 0.008474849385126463 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008474849385126463 cfl multiplier : 0.7534246575330119        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6082e+04 |  512 |      1 | 3.184e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 801.1924021303146 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.156885536261894, dt = 0.008474849385126463 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.16 us    (1.0%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 387.40 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.549095475314679e-18,-3.433630333185556e-17,-2.0923936411634813e-17)
    sum a = (1.2927159342979166e-17,-3.3746443139914814e-17,7.406185040248481e-17)
    sum e = 2.5920009339166814
    sum de = -2.0328790734103208e-19
Info: CFL hydro = 0.009392459834941313 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009392459834941313 cfl multiplier : 0.8356164383553413        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5986e+04 |  512 |      1 | 3.203e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 952.5756509922861 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.165360385647021, dt = 0.009392459834941313 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.3%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 378.95 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6778986934059575e-18,-3.459390976803811e-17,-1.9892778830438162e-17)
    sum a = (-1.9950447543992667e-16,9.358139263504483e-17,5.005175961192432e-17)
    sum e = 2.5920009665664843
    sum de = 1.3145951341386741e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011818569484934075
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6299088734814685e-18,-3.399087651970167e-17,-2.003841428725728e-17)
    sum a = (3.483541580195926e-17,4.4401982091102355e-17,8.825947785118249e-18)
    sum e = 2.5920007665163034
    sum de = -6.911788849595091e-19
Info: CFL hydro = 0.005001794495536564 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005001794495536564 cfl multiplier : 0.4452054794517804        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.0529e+04 |  512 |      1 | 4.863e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 695.3647152585963 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.1747528454819625, dt = 0.005001794495536564 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.2%)
   patch tree reduce : 2.27 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 408.32 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.005761430365574e-18,-3.408894260620299e-17,-2.0170876687680694e-17)
    sum a = (-2.1978512759757153e-17,-7.205954583033857e-17,9.715860928294351e-18)
    sum e = 2.5920008227395948
    sum de = 2.439454888092385e-19
Info: CFL hydro = 0.00707777392454039 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00707777392454039 cfl multiplier : 0.6301369863011869         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6028e+04 |  512 |      1 | 3.194e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 563.6921822197393 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.179754639977499, dt = 0.00707777392454039 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 2.14 us    (0.5%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 372.39 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6515525806145595e-18,-3.4768086847047905e-17,-2.0030364086126573e-17)
    sum a = (7.588265953095696e-17,6.51393002037981e-17,-4.391311533152864e-17)
    sum e = 2.592000876860723
    sum de = 5.014435047745458e-19
Info: CFL hydro = 0.008460780057156654 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008460780057156654 cfl multiplier : 0.7534246575341245        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5866e+04 |  512 |      1 | 3.227e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 789.5735738984375 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.18683241390204, dt = 0.008460780057156654 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1893.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 404.50 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (73.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.825418272764615e-18,-3.376693456097479e-17,-2.067218466718368e-17)
    sum a = (3.3441999169880885e-17,-1.0050163826158531e-16,-9.981371198314326e-17)
    sum e = 2.592000921648634
    sum de = -5.827586677109586e-19
Info: CFL hydro = 0.009383198223312317 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009383198223312317 cfl multiplier : 0.8356164383560829        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6008e+04 |  512 |      1 | 3.198e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 952.3102213386851 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.195293193959197, dt = 0.009383198223312317 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1173.00 ns (0.3%)
   LB compute        : 399.55 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (62.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.018623099901532e-18,-3.5488213930012776e-17,-2.184458668640088e-17)
    sum a = (-4.1392670541151585e-18,-2.326069024893851e-17,4.628719282862015e-17)
    sum e = 2.5920009553397496
    sum de = -3.7947076036992655e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011113944948317061
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.860546423153146e-18,-3.509302223814181e-17,-2.1093722471846044e-17)
    sum a = (2.1952166646965752e-17,4.186690057139675e-17,-3.0886426229115306e-17)
    sum e = 2.592000768108543
    sum de = 1.2332799712022613e-18
Info: CFL hydro = 0.005000671544419204 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005000671544419204 cfl multiplier : 0.44520547945202765       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2272e+04 |  512 |      1 | 4.172e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 809.6715000354708 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.204676392182509, dt = 0.005000671544419204 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.2%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 437.58 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.32 us    (72.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.869328460750278e-18,-3.4580736711642415e-17,-2.1747252436365993e-17)
    sum a = (9.73196133055576e-18,-2.1065766318828504e-16,-1.3799508410961002e-17)
    sum e = 2.592000820690053
    sum de = 1.2197274440461925e-19
Info: CFL hydro = 0.0070790546495995525 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0070790546495995525 cfl multiplier : 0.6301369863013518       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5813e+04 |  512 |      1 | 3.238e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 555.992132776722 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 5.209677063726928, dt = 0.0070790546495995525 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1664.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 398.77 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.863473769018856e-18,-3.649814825368303e-17,-2.1739202235235288e-17)
    sum a = (9.865155567445605e-19,6.436062620351901e-17,1.2167513090827197e-17)
    sum e = 2.592000874042708
    sum de = -4.336808689942018e-19
Info: CFL hydro = 0.008465198335443545 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008465198335443545 cfl multiplier : 0.7534246575342346        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6216e+04 |  512 |      1 | 3.157e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 807.1536877738997 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.216756118376527, dt = 0.008465198335443545 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (1.1%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 429.13 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.69 us    (73.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.94251210739305e-18,-3.5101804275738946e-17,-2.1436221938134214e-17)
    sum a = (2.0915886210504108e-17,-3.955429733748517e-17,1.535736869704568e-16)
    sum e = 2.5920009211318162
    sum de = 3.686287386450715e-18
Info: CFL hydro = 0.009387028189941244 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009387028189941244 cfl multiplier : 0.8356164383561563        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6415e+04 |  512 |      1 | 3.119e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 977.0326720738763 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.225221316711971, dt = 0.009387028189941244 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1933.00 ns (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 394.07 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.1152255134699905e-18,-3.6053191682094974e-17,-1.9404643907330876e-17)
    sum a = (3.9279126826108346e-17,1.2911058940717757e-17,-4.5528278412934606e-17)
    sum e = 2.5920009601359677
    sum de = 1.7618285302889447e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011129794427577621
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.211827927038449e-18,-3.5827786050435237e-17,-2.0292361541107694e-17)
    sum a = (1.151032394397511e-17,4.018074935274729e-17,6.113725248713814e-17)
    sum e = 2.5920007705895305
    sum de = -1.3552527156068805e-18
Info: CFL hydro = 0.005002840962081203 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005002840962081203 cfl multiplier : 0.4452054794520521        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2035e+04 |  512 |      1 | 4.254e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 794.3085183014279 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.234608344901912, dt = 0.005002840962081203 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1913.00 ns (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 389.99 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.56 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.208900581172738e-18,-3.5344773982592946e-17,-1.9612485463796347e-17)
    sum a = (6.368148196267409e-17,3.415627156111434e-17,3.6248317579956265e-17)
    sum e = 2.592000823711017
    sum de = 2.439454888092385e-19
Info: CFL hydro = 0.0070791951309153245 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0070791951309153245 cfl multiplier : 0.630136986301368        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6164e+04 |  512 |      1 | 3.168e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 568.587502001312 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 5.2396111858639935, dt = 0.0070791951309153245 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.3%)
   LB compute        : 367.70 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.45 us    (73.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.715331415940718e-18,-3.511351365920179e-17,-1.944855409531654e-17)
    sum a = (9.094678135590506e-17,-8.157085846626639e-17,-4.430208641343497e-17)
    sum e = 2.592000880909802
    sum de = 2.4123498337802474e-18
Info: CFL hydro = 0.008460819968796973 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008460819968796973 cfl multiplier : 0.7534246575342453        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6162e+04 |  512 |      1 | 3.168e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 804.4681617591359 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.246690380994909, dt = 0.008460819968796973 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1634.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 404.82 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.719411047879543e-18,-3.630787077241182e-17,-2.003768245079085e-17)
    sum a = (-8.554875557953423e-17,8.659089070772729e-17,-7.510105818481216e-17)
    sum e = 2.592000934059259
    sum de = 8.944667923005412e-19
Info: CFL hydro = 0.009381479029151669 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009381479029151669 cfl multiplier : 0.8356164383561634        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6526e+04 |  512 |      1 | 3.098e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 983.1112995383737 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.255151200963706, dt = 0.009381479029151669 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 398.39 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (75.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.200118543575606e-18,-3.48734712982135e-17,-2.0916618046970537e-17)
    sum a = (-8.997490252848905e-17,-7.698919626819567e-17,-2.6545172310266095e-17)
    sum e = 2.5920009807273474
    sum de = -1.3688052427629493e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010477321885980795
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.211827927038449e-18,-3.56287265315669e-17,-2.0874903368384157e-17)
    sum a = (-9.683660123771531e-17,1.3266145994228484e-16,-4.1448290112600095e-17)
    sum e = 2.592000773509983
    sum de = 5.285485590866834e-19
Info: CFL hydro = 0.004999170097741375 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004999170097741375 cfl multiplier : 0.4452054794520544        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1260e+04 |  512 |      1 | 4.547e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 742.768735513004 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 5.264532679992858, dt = 0.004999170097741375 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (0.7%)
   patch tree reduce : 1993.00 ns (0.3%)
   gen split merge   : 782.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.1%)
   LB compute        : 722.92 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.57073918244777e-18,-3.403039568888877e-17,-2.1163246936156675e-17)
    sum a = (-8.812481994135979e-17,-1.0247466937507444e-16,-5.295568671070949e-18)
    sum e = 2.592000831542298
    sum de = -8.402566836762659e-19
Info: CFL hydro = 0.00707650841263076 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00707650841263076 cfl multiplier : 0.6301369863013696         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2460e+04 |  512 |      1 | 4.109e-02 | 0.0% |   1.2% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 437.9671841897617 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.2695318500905985, dt = 0.00707650841263076 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (0.8%)
   patch tree reduce : 2.33 us    (0.3%)
   gen split merge   : 721.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.1%)
   LB compute        : 770.43 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.51 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.989661028104164e-18,-3.525402626075591e-17,-2.1013220460538994e-17)
    sum a = (6.527981280535222e-17,-2.2566909278765033e-16,1.2795428779022177e-17)
    sum e = 2.5920008960951515
    sum de = 2.710505431213761e-20
Info: CFL hydro = 0.008463699876223937 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008463699876223937 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5330e+04 |  512 |      1 | 3.340e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 762.7595171833489 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.276608358503229, dt = 0.008463699876223937 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1964.00 ns (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 412.35 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.19865487064275e-18,-3.760468499092173e-17,-2.084855725559276e-17)
    sum a = (-8.662601885811583e-17,1.4463430453304228e-16,6.606141415149702e-17)
    sum e = 2.592000957206336
    sum de = -1.111307226797642e-18
Info: CFL hydro = 0.009392745462434278 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009392745462434278 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5736e+04 |  512 |      1 | 3.254e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 936.4449926905615 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.285072058379453, dt = 0.009392745462434278 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.5%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 392.63 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.54 us    (73.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6339885054202945e-18,-3.4689048508673713e-17,-2.0019386539130158e-17)
    sum a = (-7.23639898003725e-18,6.45187028802674e-17,1.5005574907633877e-17)
    sum e = 2.5920010109540703
    sum de = 1.7618285302889447e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010663272503392322
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9252594190585255e-18,-3.505203939602186e-17,-2.0214786875666357e-17)
    sum a = (-1.43533622487535e-16,5.742281650178426e-17,3.8020368103852674e-17)
    sum e = 2.592000776158238
    sum de = -2.3987973066241786e-18
Info: CFL hydro = 0.005009847701576159 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005009847701576159 cfl multiplier : 0.44520547945205474       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1657e+04 |  512 |      1 | 4.392e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 769.8404476565296 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.294464803841887, dt = 0.005009847701576159 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.2%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 408.60 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.34 us    (76.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.512815038853034e-18,-3.485297987715352e-17,-1.9859846189448914e-17)
    sum a = (-1.7915356698150476e-17,1.0664906457957812e-16,6.008670123958115e-17)
    sum e = 2.592000842132306
    sum de = 9.351243737687476e-19
Info: CFL hydro = 0.007093383271830333 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007093383271830333 cfl multiplier : 0.6301369863013698        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5891e+04 |  512 |      1 | 3.222e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 559.7525532247154 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.299474651543463, dt = 0.007093383271830333 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 392.91 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.817259008886964e-18,-3.3676186839137757e-17,-1.941928063665943e-17)
    sum a = (-1.3840491253080955e-17,3.3278067801401077e-17,-1.2606907705270397e-16)
    sum e = 2.5920009147344536
    sum de = -1.4026865606531214e-18
Info: CFL hydro = 0.00848555683279314 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00848555683279314 cfl multiplier : 0.7534246575342465         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5896e+04 |  512 |      1 | 3.221e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 792.8198084892035 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.306568034815293, dt = 0.00848555683279314 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.3%)
   patch tree reduce : 2.22 us    (0.5%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 424.61 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.37 us    (75.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.739684343445626e-18,-3.396892142570884e-17,-2.11427555150967e-17)
    sum a = (-3.4378749846908365e-17,3.2903367530590087e-18,-4.078378260108373e-17)
    sum e = 2.5920009818885066
    sum de = -5.759824041329242e-19
Info: CFL hydro = 0.009418814082917462 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009418814082917462 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5589e+04 |  512 |      1 | 3.284e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 930.1090673001555 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.315053591648087, dt = 0.009418814082917462 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (0.9%)
   patch tree reduce : 2.27 us    (0.4%)
   gen split merge   : 792.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.1%)
   LB compute        : 603.20 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.87 us    (74.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.217153106416237e-18,-3.393525694825317e-17,-2.1105431855308888e-17)
    sum a = (-1.0718769621886892e-16,-3.0210209334136096e-18,5.210675640965334e-19)
    sum e = 2.592001038083963
    sum de = 4.2690460541616737e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011053487296278964
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.947837286770838e-18,-3.408747893327013e-17,-2.0892833361811635e-17)
    sum a = (8.622789982037915e-17,-4.9155991777016796e-17,4.250506197012172e-18)
    sum e = 2.5920007778356076
    sum de = -1.4094628242311558e-18
Info: CFL hydro = 0.005022591637874092 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005022591637874092 cfl multiplier : 0.44520547945205474       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1644e+04 |  512 |      1 | 4.397e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 771.1582587127979 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.324472405731004, dt = 0.005022591637874092 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.3%)
   patch tree reduce : 1934.00 ns (0.4%)
   gen split merge   : 1072.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.2%)
   LB compute        : 424.36 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.22855110301934e-18,-3.452950815899247e-17,-2.082221114280136e-17)
    sum a = (1.8484432734444666e-16,4.049104801451264e-17,8.75627695351433e-17)
    sum e = 2.59200085109274
    sum de = -1.0164395367051604e-19
Info: CFL hydro = 0.007106686243480664 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007106686243480664 cfl multiplier : 0.6301369863013698        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5608e+04 |  512 |      1 | 3.280e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 551.2022656022964 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.3294949973688786, dt = 0.007106686243480664 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 1904.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 418.24 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.794681141174651e-18,-3.3783034963236203e-17,-2.0062198972416178e-17)
    sum a = (8.243405957841787e-17,-4.613497084360318e-17,-7.434287560559305e-17)
    sum e = 2.5920009280278458
    sum de = -6.2002811739014785e-19
Info: CFL hydro = 0.008494734135506023 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008494734135506023 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5832e+04 |  512 |      1 | 3.234e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 791.1074644213011 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.3366016836123595, dt = 0.008494734135506023 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.3%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 429.47 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.73 us    (73.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.3801503143168236e-18,-3.4387531884505494e-17,-2.1278877097852256e-17)
    sum a = (-2.2622528850213542e-17,-7.332415924432568e-17,-2.021039585686779e-17)
    sum e = 2.5920009953205203
    sum de = -4.0318768289304696e-19
Info: CFL hydro = 0.009420484278290741 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009420484278290741 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5648e+04 |  512 |      1 | 3.272e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 934.6271932831655 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.3450964177478655, dt = 0.009420484278290741 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 400.11 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.63 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.634408955026981e-18,-3.52510989148902e-17,-2.1306138006226686e-17)
    sum a = (1.4519635493925874e-17,-2.414474870038319e-17,5.475307707225596e-17)
    sum e = 2.592001046623108
    sum de = -2.303929616531697e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011244771474790912
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.563054899550279e-18,-3.535648336605579e-17,-2.0965468131104586e-17)
    sum a = (-1.0992769194917429e-16,-1.0620410800799007e-16,2.1627231255871848e-17)
    sum e = 2.5920007781476033
    sum de = -5.251604272976662e-20
Info: CFL hydro = 0.005020759038172972 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005020759038172972 cfl multiplier : 0.44520547945205474       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1730e+04 |  512 |      1 | 4.365e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 776.9768298332644 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.354516902026156, dt = 0.005020759038172972 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 394.37 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.25 us    (74.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5340928277529116e-18,-3.6274206294956144e-17,-2.094607446474425e-17)
    sum a = (-8.723490679818369e-17,-1.1414306999579792e-16,-4.554950167046101e-18)
    sum e = 2.59200085382324
    sum de = 8.80067232197218e-19
Info: CFL hydro = 0.007107667673572195 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007107667673572195 cfl multiplier : 0.6301369863013698        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5853e+04 |  512 |      1 | 3.230e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 559.6477544238201 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.359537661064329, dt = 0.007107667673572195 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.2%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 444.03 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.279962614785887e-18,-3.689992647375184e-17,-2.100754872792418e-17)
    sum a = (-2.51985932120391e-17,-1.5512591211574998e-16,1.2239818533710256e-16)
    sum e = 2.59200092864861
    sum de = 9.397830549786462e-19
Info: CFL hydro = 0.008501954048689614 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008501954048689614 cfl multiplier : 0.7534246575342465        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5193e+04 |  512 |      1 | 3.370e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 759.2988058562316 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.366645328737901, dt = 0.008501954048689614 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.4%)
   patch tree reduce : 1944.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 415.92 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9720424215364256e-18,-3.8522407919822085e-17,-1.9546345743142943e-17)
    sum a = (-1.3407244064955747e-16,5.929631785583922e-17,-1.0128616695359583e-16)
    sum e = 2.59200098991646
    sum de = 9.994988777600744e-20
Info: CFL hydro = 0.009436440904720017 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009436440904720017 cfl multiplier : 0.8356164383561643        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5821e+04 |  512 |      1 | 3.236e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 945.7601021903839 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.375147282786591, dt = 0.009436440904720017 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 399.50 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4190854397768134e-18,-3.684430690230334e-17,-2.146933753824007e-17)
    sum a = (3.990557884137047e-17,9.287882962727422e-17,-9.471720283094065e-17)
    sum e = 2.5920010316575133
    sum de = -5.421010862427522e-20
Info: CFL hydro = 0.010063488088441108 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010063488088441108 cfl multiplier : 0.8904109589041095        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5507e+04 |  512 |      1 | 3.302e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1028.8665345064705 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.3845837236913106, dt = 0.010063488088441108 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.84 us    (2.3%)
   patch tree reduce : 2.23 us    (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 394.44 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 6.50 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.51 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.603562760690071e-18,-3.587919756220179e-17,-2.2374436288094546e-17)
    sum a = (-9.906138409565556e-18,-9.751574547856023e-17,1.154311021767107e-16)
    sum e = 2.592001054427722
    sum de = 8.876905287225068e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010936858380838828
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.263990640267611e-18,-3.6731787045590074e-17,-2.1346571970996818e-17)
    sum a = (-8.924892075379276e-17,-1.4568814904469817e-16,5.868742991577137e-17)
    sum e = 2.5920007760922625
    sum de = -2.1921212674941293e-18
Info: CFL hydro = 0.005239899303006103 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005239899303006103 cfl multiplier : 0.4634703196347032        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1965e+04 |  512 |      1 | 4.279e-02 | 0.1% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 846.6154299058629 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.394647211779752, dt = 0.005239899303006103 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.5%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 407.36 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (72.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3082122151130147e-18,-3.754705286919055e-17,-2.1337424015166473e-17)
    sum a = (4.601787700897475e-17,-5.618162185472286e-17,-2.0151848939553573e-17)
    sum e = 2.5920008512311283
    sum de = -3.3203691532368573e-19
Info: CFL hydro = 0.007259440459103684 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007259440459103684 cfl multiplier : 0.6423135464231354        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5420e+04 |  512 |      1 | 3.320e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 568.117049143279 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 5.399887111082758, dt = 0.007259440459103684 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (1.5%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 404.12 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.68 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.145433132706321e-18,-3.8095015423428305e-17,-2.1649552268097893e-17)
    sum a = (-1.5882607729000853e-16,-5.716521006560171e-17,1.6685871434551914e-17)
    sum e = 2.5920009128076145
    sum de = -2.439454888092385e-19
Info: CFL hydro = 0.008604110142538915 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008604110142538915 cfl multiplier : 0.7615423642820902        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6101e+04 |  512 |      1 | 3.180e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 821.8180986297749 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.407146551541861, dt = 0.008604110142538915 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.2%)
   patch tree reduce : 2.38 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 426.63 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (76.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.46996387557464e-19,-3.8342742067314086e-17,-2.1439881120466352e-17)
    sum a = (5.903871141965666e-17,7.510398553067787e-17,4.6708730633282515e-17)
    sum e = 2.5920009573140987
    sum de = 1.5788694136820158e-18
Info: CFL hydro = 0.00949070883287693 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00949070883287693 cfl multiplier : 0.8410282428547268         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6694e+04 |  512 |      1 | 3.067e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1009.9578261384767 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.4157506616844, dt = 0.00949070883287693 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.1%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.3%)
   LB compute        : 417.28 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (73.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4648252189285456e-18,-3.7555651947671075e-17,-2.086758500371988e-17)
    sum a = (-4.868761643850306e-17,1.1358101958958143e-16,1.3586397631937253e-16)
    sum e = 2.5920009816104015
    sum de = 1.8973538018496328e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010803240385377597
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.132571463170363e-18,-3.707703089862735e-17,-2.04087235392697e-17)
    sum a = (2.5631840400164308e-17,-3.672062653947705e-17,2.3383638775298364e-17)
    sum e = 2.592000775420907
    sum de = 1.2536087619363645e-18
Info: CFL hydro = 0.0050390506414649825 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0050390506414649825 cfl multiplier : 0.44700941428490887      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2913e+04 |  512 |      1 | 3.965e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 861.7076360009851 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.425241370517277, dt = 0.0050390506414649825 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.2%)
   patch tree reduce : 2.21 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 396.57 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (73.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4472611437342805e-18,-3.819454518286247e-17,-2.0827333998066356e-17)
    sum a = (1.4747968471451323e-16,5.43315392675936e-18,-2.4531158354657022e-17)
    sum e = 2.592000833275593
    sum de = 1.1519648082658485e-18
Info: CFL hydro = 0.00711312238090105 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00711312238090105 cfl multiplier : 0.6313396095232725         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6690e+04 |  512 |      1 | 3.068e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 591.3360544982437 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.430280421158742, dt = 0.00711312238090105 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.2%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 422.85 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.75432107277418e-18,-3.7838140823712174e-17,-2.1086404107181767e-17)
    sum a = (1.3465790982269965e-17,4.601787700897475e-17,-3.6310798118277534e-17)
    sum e = 2.592000882666156
    sum de = 8.131516293641283e-20
Info: CFL hydro = 0.008492534061476329 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008492534061476329 cfl multiplier : 0.7542264063488483        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5969e+04 |  512 |      1 | 3.206e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 798.6614405077133 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.437393543539644, dt = 0.008492534061476329 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.1%)
   patch tree reduce : 2.08 us    (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 461.33 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.37 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.408894260620299e-18,-3.731048673141779e-17,-2.1410607661809245e-17)
    sum a = (-6.045554681866073e-17,1.1700015956073173e-16,5.252829421431571e-17)
    sum e = 2.5920009178287353
    sum de = -2.1819568721270777e-18
Info: CFL hydro = 0.009410463918312994 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009410463918312994 cfl multiplier : 0.836150937565899         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5846e+04 |  512 |      1 | 3.231e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 946.2099348740046 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.44588607760112, dt = 0.009410463918312994 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 2.11 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 390.42 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.51 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6565663731326074e-18,-3.612052063700633e-17,-2.0529476556230275e-17)
    sum a = (1.230539108110218e-16,9.929557176491244e-18,-6.11229816760428e-17)
    sum e = 2.592000937661994
    sum de = -5.421010862427522e-20
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.0104976770933956
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5259880952487336e-18,-3.6351780960397484e-17,-2.1114945729372448e-17)
    sum a = (1.388498691023976e-16,2.0491421059976034e-17,-7.084176995020286e-18)
    sum e = 2.592000775649832
    sum de = -7.453889935837843e-19
Info: CFL hydro = 0.005012151719585425 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005012151719585425 cfl multiplier : 0.4453836458552997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2248e+04 |  512 |      1 | 4.180e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 810.3978735383017 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.4552965415194326, dt = 0.005012151719585425 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.2%)
   patch tree reduce : 1893.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 427.65 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.358817994043474e-18,-3.6246396509231895e-17,-2.0795865030009963e-17)
    sum a = (-1.3536047283047026e-17,-2.8219614145452706e-17,-1.3210526422779977e-16)
    sum e = 2.5920008212567587
    sum de = 2.981555974335137e-19
Info: CFL hydro = 0.007092415510405146 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007092415510405146 cfl multiplier : 0.6302557639035332        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6234e+04 |  512 |      1 | 3.154e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 572.1002888572431 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.460308693239018, dt = 0.007092415510405146 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 2.21 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 401.40 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.00 us    (73.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.647472948675734e-18,-3.6588895975520065e-17,-2.2208309410215454e-17)
    sum a = (-4.741129364105312e-17,1.2692971673722298e-17,-9.545489398909978e-17)
    sum e = 2.592000861759672
    sum de = 5.692061405548898e-19
Info: CFL hydro = 0.00847684732969696 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00847684732969696 cfl multiplier : 0.7535038426023556         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5702e+04 |  512 |      1 | 3.261e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 783.0606334527354 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.4674011087494225, dt = 0.00847684732969696 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 409.98 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.331319595178961e-18,-3.638544543785316e-17,-2.2765968797633372e-17)
    sum a = (8.2199871909161e-18,-9.156737867943576e-17,2.5901156219809705e-17)
    sum e = 2.5920008930177145
    sum de = -1.2874900798265365e-18
Info: CFL hydro = 0.00939913229589296 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00939913229589296 cfl multiplier : 0.8356692284015704         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5891e+04 |  512 |      1 | 3.222e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 947.175582575651 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 5.4758779560791195, dt = 0.00939913229589296 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1974.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 408.59 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.55 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.776276166767012e-18,-3.749051850215901e-17,-2.2069260481594188e-17)
    sum a = (2.1545540010306854e-16,1.023868489991031e-16,9.660241356845845e-17)
    sum e = 2.592000915360376
    sum de = 3.7947076036992655e-19
Info: CFL hydro = 0.01000387104083305 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01000387104083305 cfl multiplier : 0.8904461522677135         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6010e+04 |  512 |      1 | 3.198e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1058.0340626869465 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.485277088375012, dt = 0.01000387104083305 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.2%)
   patch tree reduce : 1804.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 427.27 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.797297100180622e-18,-3.583949543389808e-17,-2.0779764627748555e-17)
    sum a = (2.1917038496577224e-17,4.3055402992875356e-17,-7.259817746962938e-17)
    sum e = 2.5920009326471125
    sum de = -8.131516293641283e-20
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01156642548642989
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.8590827502202904e-18,-3.596244396025794e-17,-2.1615521872409004e-17)
    sum a = (1.4854523860963198e-16,-2.7657563739236224e-17,-9.54314752221741e-18)
    sum e = 2.592000778613466
    sum de = 2.574980159653073e-19
Info: CFL hydro = 0.005203311426590097 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005203311426590097 cfl multiplier : 0.4634820507559045        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2041e+04 |  512 |      1 | 4.252e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 846.9940370939312 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.495280959415846, dt = 0.004719040584154399 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.1%)
   patch tree reduce : 2.14 us    (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 422.57 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.207125521380143e-18,-3.644545602810023e-17,-2.1352060744495026e-17)
    sum a = (7.158531580009342e-17,-5.972956504396443e-17,5.2938122635515225e-17)
    sum e = 2.59200081201613
    sum de = 1.1248597539537109e-18
Info: CFL hydro = 0.007208692576826947 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007208692576826947 cfl multiplier : 0.6423213671706031        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5745e+04 |  512 |      1 | 3.252e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 522.4298932400746 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 744                                                     [SPH][rank=0]
Info: time since start : 737.922953341 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.1498105538106718 max=0.15021644899815909 delta=0.0004058951874872929
Number of particle pairs: 130816
Distance min=0.146725 max=1.920958 mean=0.806435
---------------- t = 5.5, dt = 0.007208692576826947 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.86 us   (1.7%)
   patch tree reduce : 1714.00 ns (0.3%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.1%)
   LB compute        : 621.41 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 us    (75.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.480832359824107e-18,-3.698701501325674e-17,-2.087051234958559e-17)
    sum a = (-9.101703765668212e-17,-1.1687135634264046e-16,-6.39800712409766e-17)
    sum e = 2.592000859582611
    sum de = -1.6263032587282567e-18
Info: CFL hydro = 0.008543753172770735 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008543753172770735 cfl multiplier : 0.7615475781137354        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3914e+04 |  512 |      1 | 3.680e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 705.2517323347053 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.507208692576827, dt = 0.008543753172770735 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.2%)
   patch tree reduce : 1864.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 407.89 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.293793611278353e-18,-3.821357293098959e-17,-2.1742861417567426e-17)
    sum a = (-1.7003781195568112e-16,-7.376911581591373e-18,1.0908461633984957e-16)
    sum e = 2.592000897767537
    sum de = 1.7618285302889447e-19
Info: CFL hydro = 0.009433923478673221 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009433923478673221 cfl multiplier : 0.8410317187424902        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4621e+04 |  512 |      1 | 3.502e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 878.3133825546921 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.515752445749598, dt = 0.009433923478673221 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1983.00 ns (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 397.31 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.260751907542159e-18,-3.7718851479684455e-17,-2.0014263683865162e-17)
    sum a = (2.167406878972322e-17,1.159404603573444e-16,-1.426202905774332e-17)
    sum e = 2.5920009340455263
    sum de = -7.318364664277155e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01099440962245542
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.032107543156971e-18,-3.7136309652407994e-17,-2.0552895323155963e-17)
    sum a = (8.15792745856303e-17,-3.0508798612438604e-17,-2.4027654865754753e-17)
    sum e = 2.5920007822200684
    sum de = -7.995991022080595e-19
Info: CFL hydro = 0.005015502051051254 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005015502051051254 cfl multiplier : 0.44701057291416335       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2768e+04 |  512 |      1 | 4.010e-02 | 0.1% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 846.9089302237726 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.525186369228272, dt = 0.005015502051051254 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 2.15 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 390.72 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.759552990786121e-18,-3.803207748731552e-17,-2.0725608729232902e-17)
    sum a = (1.0386223131542137e-17,6.183139937554482e-17,3.6872848524494016e-17)
    sum e = 2.5920008242804404
    sum de = -7.453889935837843e-19
Info: CFL hydro = 0.007084827247289795 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007084827247289795 cfl multiplier : 0.6313403819427755        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5218e+04 |  512 |      1 | 3.364e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 536.681734313269 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 5.530201871279323, dt = 0.007084827247289795 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1894.00 ns (0.5%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 391.15 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.84 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.706860765203325e-18,-3.735878793820202e-17,-2.0383109262944732e-17)
    sum a = (2.3547570143778172e-17,1.0708816645943475e-16,-3.031559378530169e-17)
    sum e = 2.5920008744167222
    sum de = 1.260385025514399e-18
Info: CFL hydro = 0.008467124986325451 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008467124986325451 cfl multiplier : 0.7542269212951836        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6895e+04 |  512 |      1 | 3.031e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 841.6203831344765 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.537286698526613, dt = 0.008467124986325451 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 395.60 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.821027253966049e-18,-3.6386909110786016e-17,-2.0895394789444133e-17)
    sum a = (-5.5572733914655e-17,1.078975775913038e-16,5.457743632031331e-17)
    sum e = 2.5920009259153645
    sum de = -1.463672932855431e-18
Info: CFL hydro = 0.009393379752166817 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009393379752166817 cfl multiplier : 0.8361512808634558        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7036e+04 |  512 |      1 | 3.005e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1014.2027598587241 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.545753823512939, dt = 0.009393379752166817 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.2%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 395.85 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1257826108597194e-18,-3.53330645991301e-17,-1.9958644112416655e-17)
    sum a = (-8.290243491693161e-17,2.6343185445532045e-17,1.1083516916754466e-16)
    sum e = 2.5920009767434546
    sum de = 4.0657581468206416e-20
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010691807970002314
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.906231670931405e-18,-3.569312814061254e-17,-1.9689328292771258e-17)
    sum a = (-8.472909873713518e-17,-9.186011326600685e-18,1.5443213114557652e-16)
    sum e = 2.592000786241004
    sum de = 2.0328790734103208e-19
Info: CFL hydro = 0.00500947665528352 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00500947665528352 cfl multiplier : 0.44538376028781856        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2918e+04 |  512 |      1 | 3.964e-02 | 0.1% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 853.1791566909807 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.555147203265106, dt = 0.00500947665528352 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.2%)
   patch tree reduce : 1944.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 403.71 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.485425702735468e-18,-3.5851204817360925e-17,-1.8653047856309614e-17)
    sum a = (1.220586132166801e-16,1.0799857102367083e-16,-7.126330775486523e-17)
    sum e = 2.592000839477284
    sum de = -6.437450399132683e-19
Info: CFL hydro = 0.00709347990345845 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00709347990345845 cfl multiplier : 0.6302558401918791         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7119e+04 |  512 |      1 | 2.991e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 602.9680709836929 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.560156679920389, dt = 0.00709347990345845 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1594.00 ns (0.4%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 376.14 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (73.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.859814586686718e-18,-3.47944329598393e-17,-1.9812276819131113e-17)
    sum a = (-1.8336894502812838e-17,-9.399122105624435e-17,4.537678826438407e-17)
    sum e = 2.592000904077705
    sum de = 1.4365678785432934e-18
Info: CFL hydro = 0.00848976884935536 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00848976884935536 cfl multiplier : 0.7535038934612528         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7135e+04 |  512 |      1 | 2.988e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 854.6492043887827 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.567250159823848, dt = 0.00848976884935536 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 401.89 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.223848697361033e-18,-3.626396058442616e-17,-1.906287627750913e-17)
    sum a = (1.8023083026008635e-16,-3.9882160074444785e-17,1.0922677557345314e-16)
    sum e = 2.5920009694878114
    sum de = 4.607859233063394e-19
Info: CFL hydro = 0.00942967527907938 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00942967527907938 cfl multiplier : 0.8356692623075018         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6075e+04 |  512 |      1 | 3.185e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 959.5738482470471 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.575739928673204, dt = 0.00942967527907938 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.2%)
   patch tree reduce : 1884.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.2%)
   LB compute        : 427.57 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (73.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.733315940741669e-18,-3.641618256944312e-17,-1.7613840073982257e-17)
    sum a = (-3.943720350285673e-17,-1.013095857205215e-16,6.379711212436967e-17)
    sum e = 2.592001030959118
    sum de = -1.0028870095490916e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010755364577787422
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.772414660322079e-18,-3.675868203573129e-17,-1.786559181843339e-17)
    sum a = (1.3444714092036847e-16,-1.0920171017447799e-16,6.104833435646717e-17)
    sum e = 2.5920007894420998
    sum de = -1.0842021724855044e-19
Info: CFL hydro = 0.005034112309674786 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005034112309674786 cfl multiplier : 0.4452230874358339        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1953e+04 |  512 |      1 | 4.283e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 792.5376884442603 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.585169603952283, dt = 0.005034112309674786 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 394.67 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.48 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.176077002930438e-18,-3.728560429155925e-17,-1.759627599878799e-17)
    sum a = (2.0374327225347598e-17,-5.902700203619382e-17,7.2926040206589e-17)
    sum e = 2.5920008573526743
    sum de = 1.0503208545953324e-18
Info: CFL hydro = 0.0071328868017932 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.0071328868017932 cfl multiplier : 0.6301487249572225          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6150e+04 |  512 |      1 | 3.170e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 571.6646021105868 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.590203716261958, dt = 0.0071328868017932 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.2%)
   patch tree reduce : 1804.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 390.36 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.42 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.122652940881214e-18,-3.7452463005904767e-17,-1.698153336698871e-17)
    sum a = (-2.0201028350097515e-16,-5.702469746404759e-18,-1.3948803050112257e-17)
    sum e = 2.5920009354509914
    sum de = -9.520650327138336e-19
Info: CFL hydro = 0.008542197454301622 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008542197454301622 cfl multiplier : 0.7534324833048149        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5627e+04 |  512 |      1 | 3.276e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 783.7313939952198 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.597336603063751, dt = 0.008542197454301622 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.1%)
   patch tree reduce : 2.24 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 465.39 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.54 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.43791086379114e-18,-3.742318954724766e-17,-1.745869074309958e-17)
    sum a = (-4.0982842119952065e-18,6.159135701455654e-17,6.264520152621244e-19)
    sum e = 2.5920010099032864
    sum de = 2.913793338554793e-19
Info: CFL hydro = 0.009477957145736722 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009477957145736722 cfl multiplier : 0.8356216555365433        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6048e+04 |  512 |      1 | 3.191e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 963.854681293462 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 5.605878800518052, dt = 0.009477957145736722 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.2%)
   patch tree reduce : 1864.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 398.41 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.442447893521483e-18,-3.648351152435447e-17,-1.7373797712993966e-17)
    sum a = (2.482389294122811e-17,3.023362810106178e-17,5.585961380949466e-17)
    sum e = 2.5920010726104263
    sum de = 6.013933925505532e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010752455220910293
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.471812831736895e-18,-3.6675252678558534e-17,-1.714546473546852e-17)
    sum a = (4.6790696317522416e-17,9.515045001906585e-17,8.651477971521881e-17)
    sum e = 2.5920007908388634
    sum de = 1.1350241493207625e-18
Info: CFL hydro = 0.005048731275035367 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005048731275035367 cfl multiplier : 0.44520721851218115       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2106e+04 |  512 |      1 | 4.229e-02 | 0.0% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 806.7854986089998 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.615356757663789, dt = 0.005048731275035367 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.1%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 423.25 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.930857255303679e-18,-3.593609784746654e-17,-1.6568777599923478e-17)
    sum a = (6.786758655064062e-17,7.388620965054216e-17,-8.316004135311416e-17)
    sum e = 2.592000870019506
    sum de = -8.021402010498224e-19
Info: CFL hydro = 0.007142127905898227 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007142127905898227 cfl multiplier : 0.6301381456747874        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6114e+04 |  512 |      1 | 3.177e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 572.0411326694788 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.620405488938824, dt = 0.007142127905898227 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.2%)
   patch tree reduce : 2.14 us    (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 384.21 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.376911581591373e-18,-3.5502850659341336e-17,-1.7502600931085243e-17)
    sum a = (-6.742262997905258e-17,2.8500639348560954e-17,-4.353548771485194e-17)
    sum e = 2.592000953293803
    sum de = -1.9325056691606862e-18
Info: CFL hydro = 0.008534122819156482 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008534122819156482 cfl multiplier : 0.7534254304498583        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5501e+04 |  512 |      1 | 3.303e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 778.4058919986803 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.627547616844723, dt = 0.008534122819156482 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 401.12 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.3684409308539804e-18,-3.5393075189377174e-17,-1.7723615543946413e-17)
    sum a = (-6.983476297239832e-17,2.6275856490620697e-17,2.7247735318036704e-17)
    sum e = 2.5920010252584773
    sum de = 1.136718215215271e-18
Info: CFL hydro = 0.009459612406454302 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009459612406454302 cfl multiplier : 0.835616953633239         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6216e+04 |  512 |      1 | 3.157e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 973.0213349385222 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.636081739663879, dt = 0.009459612406454302 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.2%)
   patch tree reduce : 1893.00 ns (0.5%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 384.20 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.662950577217662e-18,-3.5106195294537514e-17,-1.720547532571559e-17)
    sum a = (3.6486438870220186e-17,9.765625808011436e-17,-1.2716390440647984e-17)
    sum e = 2.592001077997745
    sum de = -8.097634975751111e-19
Info: CFL hydro = 0.010075596495346508 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010075596495346508 cfl multiplier : 0.8904113024221593        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6630e+04 |  512 |      1 | 3.079e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1106.1345287380361 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.6455413520703335, dt = 0.010075596495346508 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.88 us    (1.6%)
   patch tree reduce : 2.14 us    (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1482.00 ns (0.3%)
   LB compute        : 466.88 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (75.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.442356413963179e-18,-3.3803526384296175e-17,-1.7559684175466605e-17)
    sum a = (-7.423749115442746e-17,-3.7376352013396285e-17,1.8816979224789422e-17)
    sum e = 2.592001110173606
    sum de = 5.082197683525802e-20
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010517887923342134
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.892015391209538e-18,-3.447974327927539e-17,-1.7408925863382495e-17)
    sum a = (1.6402504354751102e-16,-1.0515026349633416e-17,1.0368659056347873e-16)
    sum e = 2.592000789699705
    sum de = 6.776263578034403e-19
Info: CFL hydro = 0.005244017706658513 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005244017706658513 cfl multiplier : 0.4634704341407197        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1995e+04 |  512 |      1 | 4.269e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 849.7502822259005 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.65561694856568, dt = 0.005244017706658513 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.1%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 421.18 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.993849722789936e-18,-3.4458520021748986e-17,-1.6393136847980826e-17)
    sum a = (5.666170657669944e-17,-4.416779442184548e-17,-8.909669876877579e-17)
    sum e = 2.592000876103193
    sum de = -2.168404344971009e-19
Info: CFL hydro = 0.007267304390315398 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007267304390315398 cfl multiplier : 0.6423136227604798        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5947e+04 |  512 |      1 | 3.211e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 588.002781154642 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 5.660860966272339, dt = 0.007267304390315398 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.5%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 388.62 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.041419093107738e-18,-3.4844929676022816e-17,-1.7656286589035065e-17)
    sum a = (-1.4218704338930798e-16,-1.084757283997817e-16,-4.238796813549328e-17)
    sum e = 2.5920009491671516
    sum de = 1.4162390878091902e-18
Info: CFL hydro = 0.008616932518937888 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008616932518937888 cfl multiplier : 0.7615424151736532        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6199e+04 |  512 |      1 | 3.161e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 827.7214715246857 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.668128270662654, dt = 0.008616932518937888 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (1.2%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 369.63 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.0771700172157494e-18,-3.605831453735997e-17,-1.7809972246984884e-17)
    sum a = (-7.067783858172306e-17,-3.23413171243736e-17,-1.2304220142755895e-16)
    sum e = 2.592001003013125
    sum de = 1.2332799712022613e-18
Info: CFL hydro = 0.009517465553062108 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009517465553062108 cfl multiplier : 0.8410282767824354        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6097e+04 |  512 |      1 | 3.181e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 975.2895617738654 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.676745203181592, dt = 0.009517465553062108 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.2%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 435.00 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.8678647878174226e-18,-3.600049945651218e-17,-1.9390739014468748e-17)
    sum a = (-5.1404193401882735e-18,-7.985799521659231e-17,-1.210867343892641e-16)
    sum e = 2.592001032722775
    sum de = 1.4840017235895342e-18
Info: CFL hydro = 0.010101045921833602 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010101045921833602 cfl multiplier : 0.8940188511882902        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5782e+04 |  512 |      1 | 3.244e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1056.1243517802134 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.6862626687346545, dt = 0.010101045921833602 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.1%)
   patch tree reduce : 2.33 us    (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 414.92 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (73.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.065460633752906e-18,-3.701848398131313e-17,-2.0520694518633144e-17)
    sum a = (1.375852556884105e-17,-1.7306468758082615e-17,-7.601731744077966e-17)
    sum e = 2.592001039894799
    sum de = -1.6940658945086007e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010357836699156747
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.1415716262613885e-18,-3.675941387219772e-17,-2.03611541689519e-17)
    sum a = (4.023344157833009e-17,1.4442353563071107e-16,-6.709476724209296e-17)
    sum e = 2.5920007842404806
    sum de = -1.1180834903756764e-18
Info: CFL hydro = 0.005241506191697904 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005241506191697904 cfl multiplier : 0.4646729503960967        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2344e+04 |  512 |      1 | 4.148e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 876.7055610696476 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.6963637146564885, dt = 0.005241506191697904 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.26 us    (1.0%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 401.53 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.631902058767958e-18,-3.521029903188685e-17,-2.071975403750148e-17)
    sum a = (-1.0550154500021947e-16,-1.596223153654819e-16,-5.709495376482465e-17)
    sum e = 2.5920008531935435
    sum de = -1.2874900798265365e-18
Info: CFL hydro = 0.007248260446910366 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007248260446910366 cfl multiplier : 0.6431153002640645        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6504e+04 |  512 |      1 | 3.102e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 608.2272585217908 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.701605220848187, dt = 0.007248260446910366 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.95 us    (1.0%)
   patch tree reduce : 841.00 ns  (0.2%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 722.00 ns  (0.2%)
   LB compute        : 377.80 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 2.71 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4258355620950826e-18,-3.71681445386976e-17,-2.1154464898559544e-17)
    sum a = (-2.418573154250314e-17,-3.6837720374105484e-17,1.9671764217576992e-17)
    sum e = 2.5920009036224423
    sum de = -1.7618285302889447e-19
Info: CFL hydro = 0.008580101312185015 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008580101312185015 cfl multiplier : 0.7620768668427097        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6301e+04 |  512 |      1 | 3.141e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 830.7589313811601 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.708853481295097, dt = 0.008580101312185015 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.1%)
   patch tree reduce : 2.50 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 440.22 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.522437975663541e-18,-3.701079969841564e-17,-2.0653888755522987e-17)
    sum a = (7.763906705038347e-17,-7.86168005695309e-17,1.6463393148757886e-17)
    sum e = 2.5920009353137274
    sum de = 8.538092108323347e-19
Info: CFL hydro = 0.009463029761637081 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009463029761637081 cfl multiplier : 0.8413845778951398        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6263e+04 |  512 |      1 | 3.148e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 981.1029605298139 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.717433582607281, dt = 0.009463029761637081 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.2%)
   patch tree reduce : 2.21 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 390.19 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.664102863290777e-18,-3.791059263388852e-17,-2.053094022916313e-17)
    sum a = (-1.0840620393547107e-16,-6.559596615884899e-17,3.892199063049162e-17)
    sum e = 2.5920009476807917
    sum de = 9.486769009248164e-20
Info: CFL hydro = 0.010048275496922035 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010048275496922035 cfl multiplier : 0.8942563852634265        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5142e+04 |  512 |      1 | 3.381e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1007.4985798331307 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.726896612368918, dt = 0.010048275496922035 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.3%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 387.48 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.707172152063066e-18,-3.8513625882224957e-17,-2.005561244421833e-17)
    sum a = (2.465703422688259e-17,-2.1076890233118207e-17,2.5549874715924404e-17)
    sum e = 2.592000946293828
    sum de = 9.215718466126788e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011161200950592799
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.444863310222203e-18,-3.826260597424025e-17,-2.00680536641476e-17)
    sum a = (2.5154683024053436e-17,8.475251750406087e-17,4.8921804107759924e-17)
    sum e = 2.592000780943535
    sum de = -1.3552527156068805e-18
Info: CFL hydro = 0.0052191027305277535 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0052191027305277535 cfl multiplier : 0.46475212842114216      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2333e+04 |  512 |      1 | 4.152e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 871.3182812419183 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.736944887865841, dt = 0.0052191027305277535 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.1%)
   patch tree reduce : 1964.00 ns (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 402.26 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.624895080963421e-18,-3.73661063028663e-17,-1.9775319077576515e-17)
    sum a = (7.066027450652879e-17,3.391037450839462e-17,-1.508168590014236e-17)
    sum e = 2.5920008255213416
    sum de = 2.168404344971009e-19
Info: CFL hydro = 0.007220559319938619 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007220559319938619 cfl multiplier : 0.6431680856140948        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5639e+04 |  512 |      1 | 3.274e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 573.8863464446058 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.742163990596368, dt = 0.007220559319938619 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (1.2%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.3%)
   LB compute        : 380.09 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.0976614382757255e-18,-3.722266635544646e-17,-2.0038048369024064e-17)
    sum a = (1.3812974201943273e-16,7.531475443300905e-17,-4.800847219765814e-18)
    sum e = 2.5920008577828884
    sum de = -6.369687763352339e-19
Info: CFL hydro = 0.008553611142546838 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008553611142546838 cfl multiplier : 0.7621120570760631        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5694e+04 |  512 |      1 | 3.262e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 796.7996818865839 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.749384549916307, dt = 0.008553611142546838 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 2.23 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1203.00 ns (0.3%)
   LB compute        : 432.72 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (73.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.47351399515983e-18,-3.6405936858913136e-17,-1.9997705883812236e-17)
    sum a = (3.4039177726485905e-17,1.6346299314129454e-16,4.394531613605146e-17)
    sum e = 2.59200087987267
    sum de = -1.734723475976807e-18
Info: CFL hydro = 0.009442505212573478 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009442505212573478 cfl multiplier : 0.8414080380507087        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5971e+04 |  512 |      1 | 3.206e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 960.5595106486509 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.7579381610588545, dt = 0.009442505212573478 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 389.36 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.417894423711323e-18,-3.4547072234186735e-17,-1.9414066301836132e-17)
    sum a = (2.6416369092174818e-17,-1.779826286352204e-17,4.2973437308635455e-17)
    sum e = 2.5920008937605465
    sum de = 6.505213034913027e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011030866188561625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.343247104135697e-18,-3.54384490502957e-17,-1.9353689793355847e-17)
    sum a = (-7.01509163258951e-17,-3.0116534266433345e-16,-2.5175174445113412e-17)
    sum e = 2.5920007833039755
    sum de = 1.1655173354219173e-18
Info: CFL hydro = 0.005019110727205313 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005019110727205313 cfl multiplier : 0.44713601268356956       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2389e+04 |  512 |      1 | 4.133e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 822.5455605434388 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.7673806662714275, dt = 0.005019110727205313 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.45 us    (1.0%)
   patch tree reduce : 1684.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 429.86 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (72.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.470898036153861e-18,-3.825894679190811e-17,-1.9871189654678544e-17)
    sum a = (-2.7493632370756416e-17,-6.40620369252165e-17,3.3840118207617565e-17)
    sum e = 2.59200081406107
    sum de = 9.486769009248164e-20
Info: CFL hydro = 0.007088754981425804 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007088754981425804 cfl multiplier : 0.631424008455713         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6162e+04 |  512 |      1 | 3.168e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 570.3667786812434 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.772399776998633, dt = 0.007088754981425804 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 2.23 us    (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 401.51 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.4240605023024866e-18,-3.803207748731552e-17,-1.9525031006058235e-17)
    sum a = (-2.7798076340790345e-17,-2.747606829556215e-17,9.349942695080493e-17)
    sum e = 2.5920008440649136
    sum de = -1.1248597539537109e-18
Info: CFL hydro = 0.008470876978272259 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008470876978272259 cfl multiplier : 0.7542826723038086        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6036e+04 |  512 |      1 | 3.193e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 799.2914589970267 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.779488531980059, dt = 0.008470876978272259 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.3%)
   LB compute        : 390.86 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.280620554882654e-18,-3.818869049113105e-17,-1.8418860187052742e-17)
    sum a = (-2.530397766320469e-17,-9.298421407843982e-17,-6.63804948508595e-17)
    sum e = 2.592000871649208
    sum de = 3.2526065174565133e-19
Info: CFL hydro = 0.009396269491319748 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009396269491319748 cfl multiplier : 0.836188448202539         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5746e+04 |  512 |      1 | 3.252e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 937.8619779298066 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.787959408958331, dt = 0.009396269491319748 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.2%)
   LB compute        : 378.32 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.0705834890179e-18,-3.933621007048971e-17,-1.976470744881331e-17)
    sum a = (-4.9179410543942484e-17,1.0571231390255065e-16,2.0526549210364562e-17)
    sum e = 2.5920008982565634
    sum de = 1.1655173354219173e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011308638148917596
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.86566927841814e-18,-3.8481425077702134e-17,-1.9324873732490255e-17)
    sum a = (1.9697524861195249e-16,3.9844104578190544e-17,3.460122813270239e-17)
    sum e = 2.5920007869812447
    sum de = -5.149960319306146e-19
Info: CFL hydro = 0.005008435367091519 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005008435367091519 cfl multiplier : 0.4453961494008463        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2485e+04 |  512 |      1 | 4.101e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 824.8470529918378 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.797355678449651, dt = 0.005008435367091519 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (1.1%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 417.80 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.011413797984202e-18,-3.856924545367346e-17,-1.9071658315106266e-17)
    sum a = (-4.6088133309751813e-17,-1.0216290704037622e-16,3.601806353170644e-17)
    sum e = 2.592000817868854
    sum de = -3.6591823321385775e-19
Info: CFL hydro = 0.007086458412087559 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007086458412087559 cfl multiplier : 0.6302640996005642        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5894e+04 |  512 |      1 | 3.221e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 559.7050765591246 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.8023641138167426, dt = 0.007086458412087559 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.5%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 412.81 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.145651258200214e-18,-3.957332508561229e-17,-1.892236367595501e-17)
    sum a = (2.405107363268044e-17,-4.1339612397335576e-17,1.0573573266947634e-17)
    sum e = 2.592000855817788
    sum de = -2.0328790734103208e-19
Info: CFL hydro = 0.008472134910060986 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008472134910060986 cfl multiplier : 0.7535093997337095        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5725e+04 |  512 |      1 | 3.256e-02 | 0.0% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 783.541215995608 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 5.8094505722288305, dt = 0.008472134910060986 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.2%)
   patch tree reduce : 1993.00 ns (0.5%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 402.72 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.49 us    (77.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.585484974523272e-18,-3.9760675221017785e-17,-1.89457824428807e-17)
    sum a = (1.2337006416451856e-16,1.1091713485178456e-16,1.1423674506350067e-16)
    sum e = 2.5920008964440653
    sum de = 2.2293907171733185e-18
Info: CFL hydro = 0.009397988050363888 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009397988050363888 cfl multiplier : 0.8356729331558063        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5690e+04 |  512 |      1 | 3.263e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 934.6422650881024 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.817922707138892, dt = 0.009397988050363888 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.2%)
   patch tree reduce : 1903.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 415.25 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.016225266389455e-18,-3.80262227955841e-17,-1.7357697310732555e-17)
    sum a = (-5.709495376482465e-17,-6.430207928620479e-17,6.889215760363943e-17)
    sum e = 2.5920009391913097
    sum de = 3.049318610115481e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011113401515493311
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.20571637982076e-18,-3.8777087010138935e-17,-1.7539924590873058e-17)
    sum a = (4.044421048066127e-17,-4.5947620708197687e-17,1.2810065508350732e-17)
    sum e = 2.5920007914442076
    sum de = 9.961107459710572e-19
Info: CFL hydro = 0.005009936149541425 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005009936149541425 cfl multiplier : 0.4452243110519354        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1297e+04 |  512 |      1 | 4.532e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 746.5001578446679 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.827320695189256, dt = 0.005009936149541425 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.2%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 397.82 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.772157804835811e-18,-3.9055184867381467e-17,-1.776898940486493e-17)
    sum a = (4.6275483445157303e-17,-2.801469993485295e-17,7.012749755896941e-17)
    sum e = 2.5920008325006303
    sum de = 7.724940478959219e-19
Info: CFL hydro = 0.007092654164252883 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007092654164252883 cfl multiplier : 0.6301495407012903        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5799e+04 |  512 |      1 | 3.241e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 556.5340084798501 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.832330631338797, dt = 0.007092654164252883 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (1.5%)
   patch tree reduce : 1883.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.2%)
   LB compute        : 425.96 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.042937297414066e-18,-3.9203015833599864e-17,-1.71264369873414e-17)
    sum a = (-6.358195220323992e-17,-9.779677068166847e-17,2.7294572851888076e-17)
    sum e = 2.5920008855556707
    sum de = 2.439454888092385e-19
Info: CFL hydro = 0.008484642051450777 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008484642051450777 cfl multiplier : 0.7534330271341935        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5864e+04 |  512 |      1 | 3.227e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 791.1380518538273 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.83942328550305, dt = 0.008484642051450777 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.3%)
   patch tree reduce : 2.27 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 406.88 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.343393115067473e-18,-4.0324189300167125e-17,-1.7061303541829332e-17)
    sum a = (7.063100104787168e-17,3.419139971150287e-18,-6.35234052859257e-19)
    sum e = 2.5920009421387373
    sum de = 3.3203691532368573e-19
Info: CFL hydro = 0.009418042511388525 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009418042511388525 cfl multiplier : 0.8356220180894622        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5575e+04 |  512 |      1 | 3.287e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 929.1451852036342 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.8479079275545, dt = 0.009418042511388525 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.4%)
   patch tree reduce : 1884.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 431.02 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.14 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.544611195150266e-18,-3.9703591976636423e-17,-1.714839208133423e-17)
    sum a = (-5.449547063607341e-17,3.127576322925485e-17,-4.990502640040556e-17)
    sum e = 2.592000998677981
    sum de = 7.352245982167327e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011087724650924127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.051353416777985e-18,-3.969480993903929e-17,-1.7360624656598268e-17)
    sum a = (6.672006697128197e-17,2.9226621123257244e-17,-6.770658252802652e-17)
    sum e = 2.5920007953011965
    sum de = -7.758821796849391e-19
Info: CFL hydro = 0.005024407380824645 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005024407380824645 cfl multiplier : 0.4452073393631541        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1780e+04 |  512 |      1 | 4.347e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 780.0469722367242 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.857325970065888, dt = 0.005024407380824645 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (1.1%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1031.00 ns (0.2%)
   LB compute        : 393.60 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.85 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.807340486597815e-18,-3.960772139953439e-17,-1.7773380423663498e-17)
    sum a = (-1.403018326517902e-16,-1.5972769981664748e-16,-5.792851550008582e-17)
    sum e = 2.5920008522146154
    sum de = 1.531435568635775e-18
Info: CFL hydro = 0.007116544960384974 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007116544960384974 cfl multiplier : 0.6301382262421028        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6540e+04 |  512 |      1 | 3.095e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 584.3282942281592 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.862350377446713, dt = 0.007116544960384974 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.37 us    (1.0%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1001.00 ns (0.2%)
   LB compute        : 411.18 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.253651668371775e-18,-4.13004591463817e-17,-1.8114416217018813e-17)
    sum a = (1.5023138982828142e-16,-4.461275099343354e-17,-2.5870419088219744e-17)
    sum e = 2.592000921374681
    sum de = -1.6195269951502222e-18
Info: CFL hydro = 0.008518705339041126 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008518705339041126 cfl multiplier : 0.753425484161402         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6096e+04 |  512 |      1 | 3.181e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 805.4357929333748 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.869466922407098, dt = 0.008518705339041126 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.50 us    (1.1%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 380.78 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.035694967288503e-17,-4.1114572683909054e-17,-1.828200676783076e-17)
    sum a = (6.798468038526906e-17,-9.245729182261187e-17,7.122817960447669e-17)
    sum e = 2.5920009903425054
    sum de = -3.6083603553033194e-19
Info: CFL hydro = 0.009462867963224453 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009462867963224453 cfl multiplier : 0.8356169894409348        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5966e+04 |  512 |      1 | 3.207e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 956.3363017324148 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.877985627746139, dt = 0.009462867963224453 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (0.9%)
   patch tree reduce : 1814.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.1%)
   LB compute        : 548.52 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.65 us    (74.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0945346191892913e-17,-4.240626404715397e-17,-1.718352023172276e-17)
    sum a = (1.5128523433993734e-16,-1.1674255312454917e-16,-4.9196974619136746e-17)
    sum e = 2.592001052726256
    sum de = -5.27278009665802e-19
Info: CFL hydro = 0.010073419172995582 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010073419172995582 cfl multiplier : 0.8904113262939566        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6271e+04 |  512 |      1 | 3.147e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1082.6333382044281 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.887448495709363, dt = 0.010073419172995582 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1021.00 ns (0.2%)
   LB compute        : 395.74 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2747127572237948e-17,-4.3584520758102593e-17,-1.8293716151293604e-17)
    sum a = (-5.025667382252408e-17,-8.547849927875717e-18,-1.8910654292492167e-17)
    sum e = 2.5920011033879446
    sum de = -2.608861477543245e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011505056754835269
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.168596469591776e-17,-4.3060891766373567e-17,-1.8165644769668753e-17)
    sum a = (-1.901603874365776e-17,5.362897625982299e-18,-1.6650743284163382e-17)
    sum e = 2.592000801247591
    sum de = -1.179069862577986e-18
Info: CFL hydro = 0.0052365070619924785 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0052365070619924785 cfl multiplier : 0.46347044209798555      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2854e+04 |  512 |      1 | 3.983e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 910.4159728235238 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.8975219148823586, dt = 0.0052365070619924785 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.2%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 401.11 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1491296195847989e-17,-4.284463409054417e-17,-1.814734885800806e-17)
    sum a = (3.7516864614950405e-17,2.5596712249775776e-17,1.5667155073284532e-17)
    sum e = 2.592000881742331
    sum de = -1.3095129364551483e-18
Info: CFL hydro = 0.007252316093552855 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007252316093552855 cfl multiplier : 0.6423136280653238        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7333e+04 |  512 |      1 | 2.954e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 638.190343572075 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 5.902758421944351, dt = 0.007252316093552855 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.72 us    (0.9%)
   patch tree reduce : 1152.00 ns (0.3%)
   gen split merge   : 1213.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 386.69 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2129457594572956e-17,-4.2770901566551584e-17,-1.7972439942531838e-17)
    sum a = (-6.282084227815509e-17,1.3559466049972711e-16,1.4296571738958707e-16)
    sum e = 2.5920009608879813
    sum de = 1.3857459017080354e-18
Info: CFL hydro = 0.00859129379211881 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00859129379211881 cfl multiplier : 0.7615424187102159         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7364e+04 |  512 |      1 | 2.949e-02 | 0.1% |   2.0% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 885.4375668373357 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.910010738037903, dt = 0.00859129379211881 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.5%)
   patch tree reduce : 1884.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 399.48 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.56 us    (78.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1249790161926842e-17,-4.1069930659456965e-17,-1.6381427464517982e-17)
    sum a = (-1.0915487264062662e-16,2.7470213603830728e-17,-1.044594098720264e-16)
    sum e = 2.59200102883799
    sum de = -1.060485249962384e-18
Info: CFL hydro = 0.00947978483702617 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00947978483702617 cfl multiplier : 0.8410282791401439         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6943e+04 |  512 |      1 | 3.022e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1023.5036368263429 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.918602031830022, dt = 0.00947978483702617 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.3%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 374.34 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.878328623841303e-18,-4.1408770943412996e-17,-1.8447767727476637e-17)
    sum a = (-6.6275110399693915e-18,5.859375484806862e-17,-1.6287752396815237e-17)
    sum e = 2.592001078595353
    sum de = -1.5111067779016718e-18
Info: CFL hydro = 0.010069186196437567 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010069186196437567 cfl multiplier : 0.894018852760096         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7329e+04 |  512 |      1 | 2.955e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1155.0822237412765 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.928081816667048, dt = 0.010069186196437567 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.48 us    (1.2%)
   patch tree reduce : 1383.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 359.18 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0592601015074754e-17,-4.0523248819035465e-17,-1.8119539072283806e-17)
    sum a = (8.607567783536219e-17,2.6697394295283062e-17,-5.867572053230852e-17)
    sum e = 2.5920011089903614
    sum de = -1.3484764520288461e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011215713336674413
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.06994491391732e-17,-4.0705476099175965e-17,-1.8295179824226458e-17)
    sum a = (1.0421351281930669e-18,-6.215340742077302e-17,-5.515119610999264e-17)
    sum e = 2.5920007997972148
    sum de = 6.640738306473715e-19
Info: CFL hydro = 0.005230871461167718 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005230871461167718 cfl multiplier : 0.46467295092003197       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3072e+04 |  512 |      1 | 3.917e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 925.5024753849663 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.938151002863486, dt = 0.005230871461167718 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1824.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 395.77 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0463797796983476e-17,-4.154050150736999e-17,-1.8609869504790376e-17)
    sum a = (1.1352247267226723e-17,7.681355551625302e-18,1.1328828500301037e-16)
    sum e = 2.592000882834169
    sum de = 9.961107459710572e-19
Info: CFL hydro = 0.0072377636788026 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.0072377636788026 cfl multiplier : 0.6431153006133546          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6439e+04 |  512 |      1 | 3.115e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 604.6119266451855 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.943381874324653, dt = 0.0072377636788026 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.2%)
   patch tree reduce : 1964.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 401.59 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0630656511328995e-17,-4.138388850355446e-17,-1.7380018322958603e-17)
    sum a = (-1.074218838881258e-16,-5.2856156951275324e-17,-4.573685180586651e-17)
    sum e = 2.5920009530612402
    sum de = -1.3688052427629493e-18
Info: CFL hydro = 0.00857453921241781 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00857453921241781 cfl multiplier : 0.7620768670755697         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6366e+04 |  512 |      1 | 3.128e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 832.8643638837191 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.950619638003456, dt = 0.00857453921241781 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (1.2%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 371.94 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.221139476989215e-18,-4.1913738105248123e-17,-1.8229314542247965e-17)
    sum a = (1.8263710856170068e-17,-4.3605744015629e-17,3.025704686798747e-17)
    sum e = 2.5920010051905495
    sum de = 2.0328790734103208e-19
Info: CFL hydro = 0.00946578264540409 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00946578264540409 cfl multiplier : 0.8413845780503797         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5858e+04 |  512 |      1 | 3.229e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 956.0510400952285 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.959194177215874, dt = 0.00946578264540409 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (1.2%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 378.98 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.658777683912989e-18,-4.228843837605911e-17,-1.7805215309953103e-17)
    sum a = (4.951239613616709e-17,9.046669663392848e-17,-2.7212607167648172e-17)
    sum e = 2.5920010347388223
    sum de = 1.7889335846010823e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011344669003734613
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.964685326879774e-18,-4.1511228048712876e-17,-1.8022021863132316e-17)
    sum a = (-1.9725188279626216e-17,5.6673415960162286e-18,1.0359291549577598e-16)
    sum e = 2.592000797976109
    sum de = 4.811147140404426e-19
Info: CFL hydro = 0.005031283716424065 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005031283716424065 cfl multiplier : 0.4471281926834599        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2230e+04 |  512 |      1 | 4.187e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 813.9569760025014 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.968659959861278, dt = 0.005031283716424065 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.2%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 398.19 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.26 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.556320578613108e-18,-4.2071814781996506e-17,-1.6901031355681662e-17)
    sum a = (3.759883029919031e-17,-3.7774471051132965e-17,5.1064621281460276e-17)
    sum e = 2.592000864699265
    sum de = -5.827586677109586e-19
Info: CFL hydro = 0.007105809512956553 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007105809512956553 cfl multiplier : 0.6314187951223066        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5987e+04 |  512 |      1 | 3.203e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 565.542224172867 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 5.9736912435777025, dt = 0.007105809512956553 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.2%)
   patch tree reduce : 1724.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.2%)
   LB compute        : 423.13 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.980785729141184e-18,-4.23118571429848e-17,-1.667708939695478e-17)
    sum a = (9.00685775961918e-17,-5.615820308779717e-17,-5.407393283141104e-17)
    sum e = 2.5920009212939266
    sum de = 4.2012834183813297e-19
Info: CFL hydro = 0.008490806726032411 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008490806726032411 cfl multiplier : 0.7542791967482044        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6229e+04 |  512 |      1 | 3.155e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 810.8534030596985 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.980797053090659, dt = 0.008490806726032411 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.2%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 426.88 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.75 us    (73.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1059512680655637e-17,-4.309053114326389e-17,-1.7514310314548087e-17)
    sum a = (1.9315798960306551e-16,-7.55957796361173e-17,-6.285597042854363e-17)
    sum e = 2.5920009603363083
    sum de = -3.3881317890172014e-19
Info: CFL hydro = 0.009411369427641173 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009411369427641173 cfl multiplier : 0.8361861311654696        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6248e+04 |  512 |      1 | 3.151e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 970.0410147623867 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.989287859816692, dt = 0.009411369427641173 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.1%)
   patch tree reduce : 2.10 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 424.12 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.353751095597988e-17,-4.378723945930307e-17,-1.8067944601400655e-17)
    sum a = (3.97533568563535e-17,1.1493930807127128e-16,-1.0070069778045365e-17)
    sum e = 2.592000979145239
    sum de = -1.8973538018496328e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011030305921530766
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.256709580149673e-17,-4.295001854170977e-17,-1.7813631429317023e-17)
    sum a = (-1.111688865962357e-16,-1.5625001292818297e-16,1.7103896424175425e-16)
    sum e = 2.592000796768862
    sum de = 4.607859233063394e-19
Info: CFL hydro = 0.005003339032792786 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005003339032792786 cfl multiplier : 0.4453953770551566        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2256e+04 |  512 |      1 | 4.178e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 811.0294958761364 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.998699229244333, dt = 0.0013007707556669246 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.2%)
   patch tree reduce : 2.28 us    (0.6%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 392.20 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1745975286164834e-17,-4.460982364756782e-17,-1.677661915638895e-17)
    sum a = (7.385108150015362e-17,2.9320296190959995e-17,3.3676186839137757e-17)
    sum e = 2.5920008034398117
    sum de = 1.0977546996415732e-18
Info: CFL hydro = 0.00707820643957017 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00707820643957017 cfl multiplier : 0.6302635847034378         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6632e+04 |  512 |      1 | 3.078e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 152.1181504687832 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 809                                                     [SPH][rank=0]
Info: time since start : 741.1215414110001 (s)                                        [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14980310093565 max=0.15016528852316796 delta=0.00036218758751796476
Number of particle pairs: 130816
Distance min=0.146198 max=1.990435 mean=0.806440
---------------- t = 6, dt = 0.00707820643957017 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.84 us    (1.6%)
   patch tree reduce : 1763.00 ns (0.3%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 821.00 ns  (0.1%)
   LB compute        : 584.30 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2341690169836993e-17,-4.392775206085719e-17,-1.6515353537874255e-17)
    sum a = (-1.3256193018285066e-16,-1.1922494241867198e-16,1.5854505208690028e-17)
    sum e = 2.5920008949674695
    sum de = -1.1519648082658485e-18
Info: CFL hydro = 0.008450310970503345 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008450310970503345 cfl multiplier : 0.7535090564689586        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2399e+04 |  512 |      1 | 4.129e-02 | 0.1% |   1.2% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 617.0677375950164 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.00707820643957, dt = 0.008450310970503345 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.2%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 433.43 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0452088413520632e-17,-4.555242901632672e-17,-1.6493398443881425e-17)
    sum a = (-4.992881108556446e-17,-5.992862456283277e-17,-5.912067710389657e-17)
    sum e = 2.592000923387137
    sum de = -6.369687763352339e-19
Info: CFL hydro = 0.009358592771072082 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009358592771072082 cfl multiplier : 0.8356727043126391        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6185e+04 |  512 |      1 | 3.163e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 961.6365241846491 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.015528517410074, dt = 0.009358592771072082 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.2%)
   patch tree reduce : 1714.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 410.35 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.052673573309626e-17,-4.592127459540629e-17,-1.738550709645681e-17)
    sum a = (-6.6509298068950785e-18,-1.1123914289701275e-18,1.1081760509235039e-16)
    sum e = 2.5920009378937605
    sum de = 2.371692252312041e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011312076000093324
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0610165090269018e-17,-4.55729204373867e-17,-1.6585609838651315e-17)
    sum a = (-6.650929806895078e-17,7.9506713712707e-17,-1.11520168100121e-16)
    sum e = 2.5920007975570423
    sum de = -2.303929616531697e-18
Info: CFL hydro = 0.004980733864244146 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004980733864244146 cfl multiplier : 0.4452242347708797        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1856e+04 |  512 |      1 | 4.319e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 780.1375577994814 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.024887110181146, dt = 0.004980733864244146 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.2%)
   patch tree reduce : 1903.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 432.03 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.003347795472398e-17,-4.466837056488204e-17,-1.821760515878512e-17)
    sum a = (-5.081872422874056e-18,-6.855844017494839e-17,1.1221102172442875e-16)
    sum e = 2.5920008370698864
    sum de = -1.1655173354219173e-18
Info: CFL hydro = 0.007045660941684023 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007045660941684023 cfl multiplier : 0.6301494898472532        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6169e+04 |  512 |      1 | 3.167e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 566.2503000507215 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.0298678440453894, dt = 0.007045660941684023 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.1%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 402.05 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0029086935925413e-17,-4.5590484512580963e-17,-1.6772228137590382e-17)
    sum a = (-1.4306524714902126e-16,6.167332269879644e-17,-4.156831129309424e-17)
    sum e = 2.5920008711399736
    sum de = 8.538092108323347e-19
Info: CFL hydro = 0.008419173966770102 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008419173966770102 cfl multiplier : 0.7534329932315021        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6249e+04 |  512 |      1 | 3.151e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 804.954777034368 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 6.036913504987074, dt = 0.008419173966770102 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.2%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 414.33 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.343667553742384e-18,-4.448687512120797e-17,-1.772800656274498e-17)
    sum a = (-5.02098362886727e-17,-6.714160477594434e-17,-6.499878760224398e-17)
    sum e = 2.5920008970535466
    sum de = 1.7618285302889447e-19
Info: CFL hydro = 0.009333662485311225 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009333662485311225 cfl multiplier : 0.835621995487668         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6183e+04 |  512 |      1 | 3.164e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 957.9608640778757 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.0453326789538435, dt = 0.009333662485311225 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.29 us    (1.0%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 401.67 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.331226333813113e-18,-4.565195877576089e-17,-1.8559372788606866e-17)
    sum a = (-7.646227401236772e-17,3.124648977059774e-17,-7.962966223906686e-17)
    sum e = 2.5920009157461394
    sum de = -7.724940478959219e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011269764102728588
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.099600092188741e-18,-4.5286040542547034e-17,-1.8559372788606866e-17)
    sum a = (7.177852062723033e-17,1.0690667101576068e-17,8.869857973103912e-17)
    sum e = 2.5920007995262524
    sum de = -4.2012834183813297e-19
Info: CFL hydro = 0.004973129050473484 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004973129050473484 cfl multiplier : 0.4452073318292227        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1951e+04 |  512 |      1 | 4.284e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 784.3011633395087 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.054666341439154, dt = 0.004973129050473484 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.3%)
   patch tree reduce : 1753.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        : 421.02 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (73.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.272002111405942e-18,-4.551437352007248e-17,-1.7363552002463977e-17)
    sum a = (-2.203705967707137e-17,-1.6562922908192056e-17,-1.2465809634543135e-16)
    sum e = 2.592000832065518
    sum de = -2.710505431213761e-18
Info: CFL hydro = 0.007039206167702076 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007039206167702076 cfl multiplier : 0.6301382212194818        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5784e+04 |  512 |      1 | 3.244e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 551.9355604086915 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.0596394704896275, dt = 0.007039206167702076 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.1%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.2%)
   LB compute        : 433.14 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.76630311310439e-18,-4.5505591482475347e-17,-1.8735013540549518e-17)
    sum a = (8.634499365500758e-17,7.65120388920848e-17,2.3225562098549978e-17)
    sum e = 2.59200086545166
    sum de = -1.2739375526704677e-18
Info: CFL hydro = 0.008418591173638872 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008418591173638872 cfl multiplier : 0.753425480812988         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6018e+04 |  512 |      1 | 3.196e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 792.7799027066854 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.06667867665733, dt = 0.008418591173638872 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 385.54 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.80880415953067e-18,-4.4542494692656475e-17,-1.8073433374898863e-17)
    sum a = (8.669627515889288e-17,-1.1340675103101335e-17,2.7587307438459164e-17)
    sum e = 2.5920008965908563
    sum de = 8.605854744103691e-19
Info: CFL hydro = 0.009342392043750166 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009342392043750166 cfl multiplier : 0.8356169872086587        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6010e+04 |  512 |      1 | 3.198e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 947.7116362203361 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.0750972678309685, dt = 0.009342392043750166 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.2%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1253.00 ns (0.3%)
   LB compute        : 396.05 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.53 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.066432098878467e-17,-4.50342887980959e-17,-1.7837782032709136e-17)
    sum a = (-2.3559279527241016e-17,7.207125521380143e-18,1.0456479432319198e-16)
    sum e = 2.592000925819141
    sum de = 2.0125502826762176e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010901313793182855
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.019009095853951e-17,-4.48732847754818e-17,-1.7394289134053942e-17)
    sum a = (6.042041866827219e-18,-4.825436925037785e-17,-1.9478559390440074e-17)
    sum e = 2.592000802718673
    sum de = -1.3552527156068805e-20
Info: CFL hydro = 0.0049831890054659374 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0049831890054659374 cfl multiplier : 0.4452056624028862       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1851e+04 |  512 |      1 | 4.320e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 778.4477077907028 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.084439659874719, dt = 0.0049831890054659374 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.1%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 407.67 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0380368439810717e-17,-4.5569993091520985e-17,-1.808075173956314e-17)
    sum a = (1.002323224419399e-17,3.903322977338863e-17,2.8404036934992493e-17)
    sum e = 2.592000837072204
    sum de = -1.4230153513872246e-18
Info: CFL hydro = 0.0070575133354013365 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0070575133354013365 cfl multiplier : 0.6301371082685908       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6103e+04 |  512 |      1 | 3.179e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 564.2324401683164 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.089422848880185, dt = 0.0070575133354013365 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1203.00 ns (0.3%)
   LB compute        : 387.99 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0418423936064958e-17,-4.499330595597595e-17,-1.767970535596075e-17)
    sum a = (-1.4393174152527167e-16,-1.9324580997903683e-16,1.2594905587220983e-18)
    sum e = 2.5920008778830987
    sum de = -2.981555974335137e-19
Info: CFL hydro = 0.008447229426479583 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008447229426479583 cfl multiplier : 0.7534247388457272        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5938e+04 |  512 |      1 | 3.213e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 790.8790500356453 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.096480362215586, dt = 0.008447229426479583 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.2%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 402.37 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.681044164765561e-18,-4.7387874874127436e-17,-1.7826072649246292e-17)
    sum a = (-4.533873276812983e-17,2.843038304778389e-17,-1.4231291926153356e-17)
    sum e = 2.592000919725382
    sum de = -2.710505431213761e-19
Info: CFL hydro = 0.00938285315853721 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00938285315853721 cfl multiplier : 0.8356164925638181         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5912e+04 |  512 |      1 | 3.218e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 945.0646282664487 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.104927591642066, dt = 0.00938285315853721 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (1.0%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.2%)
   LB compute        : 430.86 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.714708642221237e-18,-4.624035529476878e-17,-1.8007568092920367e-17)
    sum a = (1.8683492253313006e-16,-7.134527343910513e-17,9.17108186268556e-17)
    sum e = 2.592000961025104
    sum de = -2.168404344971009e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011139576654905921
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.816854360661376e-18,-4.6752640821268175e-17,-1.7483573182958122e-17)
    sum a = (9.798412081707397e-17,-5.0666502243723596e-17,6.073071733003754e-17)
    sum e = 2.5920008061385937
    sum de = -1.7279472123987727e-18
Info: CFL hydro = 0.005009540918938897 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005009540918938897 cfl multiplier : 0.4452054975212727        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2906e+04 |  512 |      1 | 3.967e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 851.4198662182548 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.114310444800603, dt = 0.005009540918938897 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (1.1%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 410.19 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.904674736632702e-18,-4.6808260392716685e-17,-1.742356259271105e-17)
    sum a = (2.103005269926683e-17,7.649740216275624e-17,-1.1151138606252386e-16)
    sum e = 2.5920008494929516
    sum de = 1.1892342579450377e-18
Info: CFL hydro = 0.00709745637061615 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00709745637061615 cfl multiplier : 0.6301369983475151         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5944e+04 |  512 |      1 | 3.211e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 561.5872474312807 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.119319985719542, dt = 0.00709745637061615 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.2%)
   patch tree reduce : 1764.00 ns (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 370.60 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.903211063699845e-18,-4.6012022317243325e-17,-1.862523807058536e-17)
    sum a = (-6.857014955841123e-17,-1.5902513680887687e-16,-1.1464071879296878e-16)
    sum e = 2.592000901992478
    sum de = 1.6940658945086007e-19
Info: CFL hydro = 0.008489748375534836 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008489748375534836 cfl multiplier : 0.7534246655650101        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5976e+04 |  512 |      1 | 3.205e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 797.2711987251988 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.126417442090158, dt = 0.008489748375534836 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.1%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 414.15 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (73.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.992806499463768e-18,-4.8181185603735074e-17,-1.9641027085987028e-17)
    sum a = (3.995241637522184e-17,2.1311077902375074e-18,-5.787948245683516e-17)
    sum e = 2.5920009546818954
    sum de = -9.24959978401696e-19
Info: CFL hydro = 0.009422938583176716 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009422938583176716 cfl multiplier : 0.8356164437100068        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6148e+04 |  512 |      1 | 3.171e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 963.9520680442597 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.134907190465693, dt = 0.009422938583176716 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.5%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 407.36 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.84759149225134e-18,-4.7428857716247387e-17,-1.991619759736385e-17)
    sum a = (-1.6486811915683574e-17,8.812481994135979e-17,2.3114322955652967e-17)
    sum e = 2.5920010036344943
    sum de = 3.5405977195229754e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010381219710743706
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.566566289143097e-18,-4.7027811332645e-17,-1.94580679693801e-17)
    sum a = (4.1217029789208935e-18,7.0232882010135e-17,5.813708889301772e-17)
    sum e = 2.5920008087086015
    sum de = 5.116079001415974e-19
Info: CFL hydro = 0.005022789141237213 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005022789141237213 cfl multiplier : 0.445205481236669         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2228e+04 |  512 |      1 | 4.187e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 810.1537916443376 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.144330129048869, dt = 0.005022789141237213 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.2%)
   LB compute        : 410.10 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.55 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.765625808011436e-18,-4.6708730633282515e-17,-1.9074585660971975e-17)
    sum a = (-5.419102666603948e-17,5.374607009445142e-17,-2.8137648461212805e-17)
    sum e = 2.5920008632942064
    sum de = 1.5365177663193008e-18
Info: CFL hydro = 0.007110147202923928 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007110147202923928 cfl multiplier : 0.6301369874911127        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5720e+04 |  512 |      1 | 3.257e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 555.1671433550866 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.1493529181901065, dt = 0.007110147202923928 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.3%)
   patch tree reduce : 1954.00 ns (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 384.62 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.153810522077866e-18,-4.635598545646435e-17,-1.9495391629167914e-17)
    sum a = (-1.9484414082171496e-17,6.533835972266644e-17,1.6861512186494566e-17)
    sum e = 2.5920009254355567
    sum de = -6.670384459627615e-20
Info: CFL hydro = 0.008502038439587576 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008502038439587576 cfl multiplier : 0.7534246583274085        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5968e+04 |  512 |      1 | 3.206e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 798.2990535045818 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.15646306539303, dt = 0.008502038439587576 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.2%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 404.13 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.080626875435094e-18,-4.5829063200636396e-17,-1.923705335651893e-17)
    sum a = (2.4261842535011625e-17,-2.800884524312153e-17,7.71062901028241e-17)
    sum e = 2.5920009837894153
    sum de = 2.558039500707987e-19
Info: CFL hydro = 0.009430093126390416 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009430093126390416 cfl multiplier : 0.835616438884939         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6270e+04 |  512 |      1 | 3.147e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 972.6416499608995 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.164965103832618, dt = 0.009430093126390416 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.2%)
   LB compute        : 384.04 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.41141695826042e-18,-4.6506743768548465e-17,-1.8263710856170068e-17)
    sum a = (-4.1849336496202485e-17,7.032655707783775e-17,-8.303123813502289e-17)
    sum e = 2.5920010325936396
    sum de = -8.300922883092143e-20
Info: CFL hydro = 0.010051124227648091 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010051124227648091 cfl multiplier : 0.890410959256626         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6022e+04 |  512 |      1 | 3.196e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1062.359267811921 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.174395196959008, dt = 0.010051124227648091 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.2%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 386.53 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.782037597132586e-18,-4.528018585081561e-17,-1.986716455411319e-17)
    sum a = (9.803095835092535e-17,-9.709420767389786e-17,3.2493539109390567e-17)
    sum e = 2.5920010699465372
    sum de = 6.437450399132683e-20
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01075677037705282
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.522656101157434e-18,-4.6167171648126005e-17,-1.9267790488108893e-17)
    sum a = (2.306748542180159e-17,-4.4846938662690404e-17,-7.874560378762218e-17)
    sum e = 2.5920008117952715
    sum de = 2.120970499924768e-18
Info: CFL hydro = 0.0052349862934363 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.0052349862934363 cfl multiplier : 0.4634703197522086          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2345e+04 |  512 |      1 | 4.147e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 872.4303968476122 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.184446321186656, dt = 0.0052349862934363 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.2%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 400.78 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.273831702572011e-18,-4.609691534734894e-17,-2.0204541165136368e-17)
    sum a = (6.486998438415271e-17,6.386297740634817e-17,8.09586772620996e-17)
    sum e = 2.5920008810041386
    sum de = 3.1170812458958252e-19
Info: CFL hydro = 0.007257439411441832 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007257439411441832 cfl multiplier : 0.6423135465014723        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6703e+04 |  512 |      1 | 3.065e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 614.8187715751332 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.189681307480092, dt = 0.007257439411441832 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.25 us    (1.1%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 376.37 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.800753958399966e-18,-4.521358873237069e-17,-1.915838093637795e-17)
    sum a = (-2.5292268279741848e-17,1.3395534681492904e-17,6.536177848959213e-17)
    sum e = 2.5920009461012534
    sum de = 1.6906777627195835e-18
Info: CFL hydro = 0.008609483623442821 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008609483623442821 cfl multiplier : 0.7615423643343148        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6236e+04 |  512 |      1 | 3.153e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 828.5065549565253 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.196938746891534, dt = 0.008609483623442821 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.56 us    (0.9%)
   patch tree reduce : 1232.00 ns (0.3%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 378.02 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.226994168720637e-18,-4.543240783583258e-17,-1.8743429659913435e-17)
    sum a = (-1.7470400126562424e-17,2.0186977089942105e-17,-8.107577109672804e-17)
    sum e = 2.592001000225757
    sum de = -9.147955830346444e-19
Info: CFL hydro = 0.009514555691286331 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009514555691286331 cfl multiplier : 0.8410282428895431        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6677e+04 |  512 |      1 | 3.070e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1009.5586155290722 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.205548230514976, dt = 0.009514555691286331 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.12 us    (1.0%)
   patch tree reduce : 1253.00 ns (0.3%)
   gen split merge   : 1052.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 414.57 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.250412935646323e-18,-4.523773933576281e-17,-2.006512631828189e-17)
    sum a = (-8.367525422547928e-17,-7.11227951533111e-17,-7.57831297715228e-17)
    sum e = 2.5920010383996948
    sum de = 1.7279472123987727e-18
Info: CFL hydro = 0.010104867474088734 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010104867474088734 cfl multiplier : 0.8940188285930288        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6173e+04 |  512 |      1 | 3.166e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1081.9460463149364 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.215062786206262, dt = 0.010104867474088734 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.2%)
   patch tree reduce : 1333.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 395.23 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.874560378762218e-18,-4.623450060303735e-17,-2.0759273206688576e-17)
    sum a = (-2.0456292909587502e-17,-5.119342449955155e-17,7.044365091246618e-17)
    sum e = 2.5920010600365657
    sum de = -6.776263578034403e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011714202656265648
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.161440273601883e-18,-4.6183272050387416e-17,-1.9974927473794674e-17)
    sum a = (3.8640965427383376e-17,1.434867849536836e-16,-7.400330348517058e-17)
    sum e = 2.592000810467877
    sum de = -1.4365678785432934e-18
Info: CFL hydro = 0.005248920904867367 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005248920904867367 cfl multiplier : 0.46467294286434296       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2110e+04 |  512 |      1 | 4.228e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 860.4186050477191 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.2251676536803515, dt = 0.005248920904867367 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.2%)
   patch tree reduce : 1954.00 ns (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 381.07 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.893276740029598e-18,-4.434489884672099e-17,-2.114302995377161e-17)
    sum a = (7.084176995020286e-18,1.124100812432971e-16,-1.7821681630447728e-17)
    sum e = 2.5920008774464374
    sum de = -3.3203691532368573e-19
Info: CFL hydro = 0.007262426333660006 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007262426333660006 cfl multiplier : 0.6431152952428953        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6524e+04 |  512 |      1 | 3.099e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 609.8363675171981 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.2304165745852185, dt = 0.007262426333660006 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.53 us    (0.8%)
   patch tree reduce : 1162.00 ns (0.3%)
   gen split merge   : 480.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 661.00 ns  (0.2%)
   LB compute        : 413.04 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.723490679818368e-18,-4.370124867449782e-17,-2.1125923276368863e-17)
    sum a = (-1.3703491466565687e-16,1.681467465264319e-17,5.175547490576804e-17)
    sum e = 2.5920009336859864
    sum de = 6.911788849595091e-19
Info: CFL hydro = 0.008603370572964508 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008603370572964508 cfl multiplier : 0.7620768634952636        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6563e+04 |  512 |      1 | 3.091e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 845.7951971213239 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.237679000918878, dt = 0.008603370572964508 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.26 us    (1.0%)
   patch tree reduce : 17.79 us   (4.1%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 821.00 ns  (0.2%)
   LB compute        : 397.77 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.324219356008577e-18,-4.3820903936758746e-17,-2.0399575583439355e-17)
    sum a = (-2.6129489197335155e-17,-1.0046651011119678e-17,-1.0913145387370094e-17)
    sum e = 2.5920009759283835
    sum de = -1.666960840196463e-18
Info: CFL hydro = 0.009496015344751942 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009496015344751942 cfl multiplier : 0.8413845756635091        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6360e+04 |  512 |      1 | 3.130e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 989.6579739551034 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.2462823714918425, dt = 0.009496015344751942 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.2%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 389.51 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.371056889859951e-18,-4.420877726396544e-17,-2.083172501686492e-17)
    sum a = (9.47581856730606e-18,4.618180837745456e-17,9.901454656180419e-17)
    sum e = 2.592001001621361
    sum de = -1.328147661294743e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011439762117758264
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.60524455911682e-18,-4.3919701859726487e-17,-2.0299679905771974e-17)
    sum a = (1.1753293650829111e-17,-4.6134970843603184e-18,1.1009162331765409e-16)
    sum e = 2.592000810089494
    sum de = -1.429791614965259e-18
Info: CFL hydro = 0.005044575655147607 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005044575655147607 cfl multiplier : 0.4471281918878363        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2150e+04 |  512 |      1 | 4.214e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 811.2279494531261 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.255778386836594, dt = 0.005044575655147607 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.3%)
   patch tree reduce : 1844.00 ns (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 386.84 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.546697641802602e-18,-4.4295865803470337e-17,-1.9620535664927052e-17)
    sum a = (-2.057850959948093e-17,-4.009292897677596e-17,1.4613310561628622e-17)
    sum e = 2.5920008638674066
    sum de = -1.0842021724855044e-18
Info: CFL hydro = 0.007122547449454934 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007122547449454934 cfl multiplier : 0.6314187945918909        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6193e+04 |  512 |      1 | 3.162e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 574.3602741313402 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.2608229624917415, dt = 0.007122547449454934 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.4%)
   patch tree reduce : 1784.00 ns (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 373.24 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.289091205620047e-18,-4.466544321901633e-17,-1.9841550277788222e-17)
    sum a = (2.382274065515499e-16,2.2566323809591895e-16,-1.086630785351872e-17)
    sum e = 2.592000911765022
    sum de = -1.8905775382715984e-18
Info: CFL hydro = 0.008507573253706956 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008507573253706956 cfl multiplier : 0.754279196394594         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5538e+04 |  512 |      1 | 3.295e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 778.1251105542013 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.267945509941196, dt = 0.008507573253706956 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 404.32 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0304257447302233e-17,-4.2036686631607975e-17,-2.0096229368105066e-17)
    sum a = (-1.9987917571073765e-17,4.5760270572792197e-17,-1.9437576548320124e-18)
    sum e = 2.5920009479889585
    sum de = -2.642742795433417e-19
Info: CFL hydro = 0.009431949216472722 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009431949216472722 cfl multiplier : 0.8361861309297293        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5864e+04 |  512 |      1 | 3.227e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 948.9480364205839 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.276453083194903, dt = 0.009431949216472722 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 2.13 us    (0.5%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 384.45 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.098190950629359e-18,-4.208059681959364e-17,-1.9939616364289535e-17)
    sum a = (-3.7434898930710504e-17,1.5526642471730412e-17,-1.5058267133216675e-17)
    sum e = 2.592000971134237
    sum de = 2.507217523872729e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011099051940470903
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.022079958120876e-18,-4.221232738355063e-17,-2.004792816132084e-17)
    sum a = (1.1100495522775589e-17,-3.910934076589711e-17,-3.077225974035258e-17)
    sum e = 2.5920008105330377
    sum de = 1.0367683274392636e-18
Info: CFL hydro = 0.005026461048292269 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005026461048292269 cfl multiplier : 0.44539537697657644       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1986e+04 |  512 |      1 | 4.272e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 794.8855509193594 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.285885032411375, dt = 0.005026461048292269 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.2%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 417.07 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.133319101017889e-18,-4.2879762240932704e-17,-2.0263088082450587e-17)
    sum a = (-6.273887659391519e-17,3.950745980363379e-17,2.784491387464172e-17)
    sum e = 2.592000855815933
    sum de = 1.9922214919421144e-18
Info: CFL hydro = 0.007114776619146518 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007114776619146518 cfl multiplier : 0.6302635846510509        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5670e+04 |  512 |      1 | 3.267e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 553.8010289212863 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.290911493459667, dt = 0.007114776619146518 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.2%)
   patch tree reduce : 1834.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 431.85 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (73.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.723490679818368e-18,-4.2254773898603435e-17,-1.993815269135668e-17)
    sum a = (-4.847684753617187e-18,-2.4812183557765266e-17,9.461181837977505e-18)
    sum e = 2.592000897991843
    sum de = -1.4772254600114998e-18
Info: CFL hydro = 0.008506725414645743 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008506725414645743 cfl multiplier : 0.753509056434034         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5982e+04 |  512 |      1 | 3.204e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 799.5152386017184 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.298026270078814, dt = 0.008506725414645743 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 392.09 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.752764138475478e-18,-4.260459172955588e-17,-1.9936689018423825e-17)
    sum a = (-1.8088655573400558e-16,2.0760736879621434e-17,9.680147308732679e-17)
    sum e = 2.592000932163767
    sum de = -1.1722935989999517e-18
Info: CFL hydro = 0.00943276049897951 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00943276049897951 cfl multiplier : 0.835672704289356          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6140e+04 |  512 |      1 | 3.172e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 965.3577683646171 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.306532995493459, dt = 0.00943276049897951 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.51 us    (1.1%)
   patch tree reduce : 1884.00 ns (0.5%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1001.00 ns (0.2%)
   LB compute        : 399.96 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.5162718970723784e-18,-4.243041465054609e-17,-1.8696958044295274e-17)
    sum a = (1.3587568570283537e-16,1.4034867018564157e-16,-6.37107554213312e-17)
    sum e = 2.592000957621294
    sum de = -2.642742795433417e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01068000801101215
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.94481667953928e-18,-4.152001008631001e-17,-1.9494659792701485e-17)
    sum a = (1.122227311078916e-16,-8.13919244502248e-17,9.746890794470886e-17)
    sum e = 2.5920008121202787
    sum de = -3.482999479109683e-18
Info: CFL hydro = 0.00502627878788867 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00502627878788867 cfl multiplier : 0.4452242347631186         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2896e+04 |  512 |      1 | 3.970e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 855.3485261035864 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.315965755992439, dt = 0.00502627878788867 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.47 us    (1.1%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 403.16 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.360499792470221e-18,-4.308906747033103e-17,-1.8271029220834345e-17)
    sum a = (-5.4565726936850464e-17,2.4437483286954274e-17,-4.771573761108705e-17)
    sum e = 2.5920008529765446
    sum de = -1.0842021724855044e-19
Info: CFL hydro = 0.007114605827324371 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007114605827324371 cfl multiplier : 0.6301494898420791        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5624e+04 |  512 |      1 | 3.277e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 552.1568379599529 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.3209920347803275, dt = 0.007114605827324371 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.1%)
   patch tree reduce : 1903.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 464.31 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.61 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.534988258339759e-18,-4.268655741379579e-17,-1.89457824428807e-17)
    sum a = (5.161496230421392e-17,-6.709476724209296e-17,1.1027897345305959e-16)
    sum e = 2.5920008945615653
    sum de = 6.166399856011306e-19
Info: CFL hydro = 0.008508639150219696 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008508639150219696 cfl multiplier : 0.7534329932280528        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6414e+04 |  512 |      1 | 3.119e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 821.1188628309201 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.328106640607651, dt = 0.008508639150219696 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.48 us    (1.1%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 375.43 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.214132499184679e-18,-4.376821171117595e-17,-1.7454299724301016e-17)
    sum a = (-1.2156681911124069e-16,-1.5301236840070675e-17,-2.9390552491737055e-18)
    sum e = 2.592000931817165
    sum de = -5.421010862427522e-20
Info: CFL hydro = 0.009441266354862811 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009441266354862811 cfl multiplier : 0.8356219954853685        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6059e+04 |  512 |      1 | 3.188e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 960.7417921174049 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.336615279757871, dt = 0.009441266354862811 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.20 us    (1.0%)
   patch tree reduce : 1072.00 ns (0.3%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 403.97 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.6450751151636566e-18,-4.366721827880893e-17,-1.791682037108333e-17)
    sum a = (6.145084441300241e-17,3.0732740571165483e-17,3.4683193816942294e-17)
    sum e = 2.5920009637161545
    sum de = -2.019326546254252e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01019551849740328
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.365202198128529e-18,-4.316810580870523e-17,-1.768995106649074e-17)
    sum a = (-1.7990296752312672e-16,6.568232286188746e-18,-7.742244345632088e-17)
    sum e = 2.5920008144593054
    sum de = -2.4462311516704194e-18
Info: CFL hydro = 0.005034401924055253 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005034401924055253 cfl multiplier : 0.4452073318284562        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1630e+04 |  512 |      1 | 4.402e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 772.0286822861904 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.346056546112734, dt = 0.005034401924055253 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.40 us    (0.8%)
   patch tree reduce : 831.00 ns  (0.2%)
   gen split merge   : 692.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 421.31 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (74.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.430226580893649e-18,-4.338765674863354e-17,-1.8661829893906745e-17)
    sum a = (-2.306748542180159e-17,1.8534783083334893e-16,9.424882749242692e-17)
    sum e = 2.5920008563093506
    sum de = -3.3881317890172014e-19
Info: CFL hydro = 0.007125707152129467 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007125707152129467 cfl multiplier : 0.6301382212189708        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6389e+04 |  512 |      1 | 3.124e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 580.1470407513176 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.351090948036789, dt = 0.007125707152129467 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1903.00 ns (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 386.67 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (74.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.520974302730685e-18,-4.1391206868218734e-17,-1.755529315666804e-17)
    sum a = (2.5901156219809705e-17,5.50341022753642e-19,-5.2914703868589543e-17)
    sum e = 2.5920009021891763
    sum de = -6.539094352803199e-19
Info: CFL hydro = 0.008516938438673632 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008516938438673632 cfl multiplier : 0.7534254808126472        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6163e+04 |  512 |      1 | 3.168e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 809.8026382508787 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.358216655188918, dt = 0.008516938438673632 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.85 us    (1.0%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 373.06 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.1181528593357015e-18,-4.2510916661853137e-17,-1.8553518096875444e-17)
    sum a = (3.641618256944312e-17,-3.445486083941685e-17,-7.81015876971658e-18)
    sum e = 2.5920009453626798
    sum de = -3.8624702394796095e-19
Info: CFL hydro = 0.009438739442981858 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009438739442981858 cfl multiplier : 0.8356169872084314        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6728e+04 |  512 |      1 | 3.061e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1001.7787173193216 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.3667335936275915, dt = 0.009438739442981858 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (1.2%)
   patch tree reduce : 1383.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 373.88 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.331849107532594e-18,-4.2914890391321236e-17,-1.841300549532132e-17)
    sum a = (1.0519710103018553e-16,1.7125558783581686e-16,3.939622066073678e-17)
    sum e = 2.592000983329626
    sum de = 3.6591823321385775e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010563664753284664
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.6538571527607895e-18,-4.202058622934657e-17,-1.8260783510304356e-17)
    sum a = (-4.871103520542874e-17,-6.770950987389224e-17,-2.968328707830814e-17)
    sum e = 2.592000816783388
    sum de = -5.929230630780102e-19
Info: CFL hydro = 0.005025561088903673 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005025561088903673 cfl multiplier : 0.44520566240281045       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2269e+04 |  512 |      1 | 4.173e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 814.2672324723671 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.376172333070573, dt = 0.005025561088903673 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (1.1%)
   patch tree reduce : 1853.00 ns (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 388.44 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.872255806615989e-18,-4.337155634637213e-17,-1.867939396910101e-17)
    sum a = (-2.0472686046435484e-16,-8.571268694801403e-17,-7.17433924768418e-17)
    sum e = 2.592000863336257
    sum de = -1.7923217163900995e-18
Info: CFL hydro = 0.0071107624651754716 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0071107624651754716 cfl multiplier : 0.6301371082685403       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5262e+04 |  512 |      1 | 3.355e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 539.3031627762593 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.381197894159477, dt = 0.0071107624651754716 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.68 us    (0.9%)
   patch tree reduce : 952.00 ns  (0.2%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 621.00 ns  (0.2%)
   LB compute        : 374.18 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.981190377366772e-18,-4.4125347906792675e-17,-1.922095295425752e-17)
    sum a = (-7.072467611557442e-18,5.711837253175033e-17,1.8816979224789422e-17)
    sum e = 2.5920009149430197
    sum de = -1.7025362239811437e-18
Info: CFL hydro = 0.008499308969307477 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008499308969307477 cfl multiplier : 0.7534247388456935        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6043e+04 |  512 |      1 | 3.191e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 802.1119412948005 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.388308656624653, dt = 0.008499308969307477 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.2%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 413.69 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.285634347400702e-18,-4.309053114326389e-17,-1.8708667427758118e-17)
    sum a = (-1.0772632785815972e-17,-7.258646808616653e-17,-6.372612398712619e-17)
    sum e = 2.592000963100275
    sum de = -2.6376605977498913e-18
Info: CFL hydro = 0.009425009266780167 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009425009266780167 cfl multiplier : 0.8356164925637956        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7118e+04 |  512 |      1 | 2.991e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1022.9583314362571 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.39680796559396, dt = 0.009425009266780167 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.99 us    (1.0%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 591.00 ns  (0.1%)
   LB compute        : 387.49 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.440783678283377e-18,-4.4141448309054086e-17,-1.9674691563442702e-17)
    sum a = (-3.138114768042044e-17,1.0566547636869927e-16,-3.304461196861064e-17)
    sum e = 2.592001004052089
    sum de = 2.4013384054659415e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010045459338497806
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.269533945139292e-18,-4.326470822227368e-17,-1.9537106307754294e-17)
    sum a = (-1.2159023787816636e-16,-6.587699136195723e-17,-5.5021661055434935e-17)
    sum e = 2.5920008183695993
    sum de = -6.547564682275742e-19
Info: CFL hydro = 0.005022673588780394 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005022673588780394 cfl multiplier : 0.44520549752126515       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3153e+04 |  512 |      1 | 3.893e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 871.6465240324655 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.406232974860741, dt = 0.005022673588780394 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.27 us    (1.0%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 418.63 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (72.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2317898357447916e-18,-4.440930045576663e-17,-1.9973280841745212e-17)
    sum a = (-4.435514455725098e-17,-4.1685405127722676e-17,-1.531587356939923e-17)
    sum e = 2.5920008704741595
    sum de = 6.2426328212641935e-19
Info: CFL hydro = 0.007110005450317373 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007110005450317373 cfl multiplier : 0.6301369983475101        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6772e+04 |  512 |      1 | 3.053e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 592.328816454825 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 6.411255648449521, dt = 0.007110005450317373 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.37 us    (1.1%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 375.03 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1059139635192244e-18,-4.478985541830904e-17,-1.9944007383088102e-17)
    sum a = (-1.6861512186494565e-18,1.3219893929550252e-16,3.0145807725090456e-17)
    sum e = 2.5920009262708144
    sum de = 5.615828440296011e-19
Info: CFL hydro = 0.008504022686410696 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008504022686410696 cfl multiplier : 0.7534246655650069        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6348e+04 |  512 |      1 | 3.132e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 817.2521040136269 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.418365653899839, dt = 0.008504022686410696 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1863.00 ns (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 379.03 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.400112223023166e-18,-4.2837315725879896e-17,-1.955759772881427e-17)
    sum a = (-7.38159533497651e-17,1.5292454802473543e-17,5.620504062164855e-19)
    sum e = 2.5920009761747504
    sum de = -2.337810934421869e-19
Info: CFL hydro = 0.009437616691452998 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009437616691452998 cfl multiplier : 0.8356164437100047        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5856e+04 |  512 |      1 | 3.229e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 948.0729258050156 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.426869676586249, dt = 0.009437616691452998 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.3%)
   LB compute        : 388.25 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3360220008372678e-18,-4.336131063584214e-17,-1.973323848075692e-17)
    sum a = (8.664943762504152e-17,9.348771756734208e-17,-2.7803931032521764e-17)
    sum e = 2.592001015698134
    sum de = 9.994988777600744e-20
Info: CFL hydro = 0.010066020834421003 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010066020834421003 cfl multiplier : 0.8904109624733364        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6855e+04 |  512 |      1 | 3.038e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1118.446628657754 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.436307293277702, dt = 0.010066020834421003 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.55 us    (0.9%)
   patch tree reduce : 1213.00 ns (0.3%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 393.28 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (75.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.110725431924478e-18,-4.2014731537615145e-17,-2.0081592638776513e-17)
    sum a = (5.491700844073577e-17,4.0912585819175004e-17,4.415023034665122e-17)
    sum e = 2.5920010442668113
    sum de = 7.250602028496811e-19
Info: CFL hydro = 0.010492533653323265 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010492533653323265 cfl multiplier : 0.9269406416488909        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6244e+04 |  512 |      1 | 3.152e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1149.6978900077042 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.446373314112123, dt = 0.010492533653323265 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.96 us    (1.0%)
   patch tree reduce : 912.00 ns  (0.2%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 410.00 ns  (0.1%)
   LB compute        : 388.33 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.79 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.471520809873342e-18,-4.1837993030972855e-17,-1.9329264751288822e-17)
    sum a = (-1.901603874365776e-17,1.0304257447302234e-16,6.556083800846047e-17)
    sum e = 2.5920010628057257
    sum de = -1.9752808329970284e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010451164739411007
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0971864572955654e-18,-4.140218441521515e-17,-1.9155087672279025e-17)
    sum a = (-2.885192085244626e-17,1.3114509478384662e-18,5.619333123818571e-17)
    sum e = 2.592000820869724
    sum de = 9.994988777600744e-19
Info: CFL hydro = 0.005379238274823902 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005379238274823902 cfl multiplier : 0.47564688054963034       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2676e+04 |  512 |      1 | 4.039e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 935.2115862562678 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.456865847765447, dt = 0.005379238274823902 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.77 us    (0.9%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 412.81 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.79127881432878e-18,-4.1924349734011324e-17,-1.885210737517795e-17)
    sum a = (-1.0959982921221467e-17,2.3442185692612584e-17,7.509227614721504e-17)
    sum e = 2.5920008838056097
    sum de = 3.049318610115481e-20
Info: CFL hydro = 0.007351773045027874 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007351773045027874 cfl multiplier : 0.6504312536997535        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6570e+04 |  512 |      1 | 3.090e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 626.7289726770857 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.462245086040271, dt = 0.007351773045027874 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.95 us    (1.0%)
   patch tree reduce : 661.00 ns  (0.2%)
   gen split merge   : 662.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 601.00 ns  (0.1%)
   LB compute        : 398.08 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.001224400635231e-18,-4.178713039655613e-17,-1.8300302679491455e-17)
    sum a = (-8.18485904052757e-17,4.814898479921226e-17,9.078284998742525e-17)
    sum e = 2.5920009368211527
    sum de = -1.2265037076242269e-18
Info: CFL hydro = 0.008663186817232896 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008663186817232896 cfl multiplier : 0.7669541691331689        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6598e+04 |  512 |      1 | 3.085e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 857.9836503119942 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.469596859085299, dt = 0.008663186817232896 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.50 us    (1.2%)
   patch tree reduce : 1333.00 ns (0.3%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 372.56 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.811349785782069e-18,-4.119361102228325e-17,-1.7454299724301016e-17)
    sum a = (-1.0606359540643595e-16,-1.1690648449302898e-16,3.263405171094469e-17)
    sum e = 2.592000978638573
    sum de = -2.1074179727686992e-18
Info: CFL hydro = 0.009534990254396362 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009534990254396362 cfl multiplier : 0.8446361127554459        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6353e+04 |  512 |      1 | 3.131e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 996.0903890355901 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.478260045902532, dt = 0.009534990254396362 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 22.56 us   (5.5%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 379.07 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8230046378714394e-18,-4.3072967068069625e-17,-1.750991929574952e-17)
    sum a = (-1.747508387994756e-16,-2.302064788795022e-17,-2.814935784467565e-17)
    sum e = 2.5920010067235264
    sum de = 6.098637220230962e-19
Info: CFL hydro = 0.01011522190632334 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01011522190632334 cfl multiplier : 0.8964240751702972         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6727e+04 |  512 |      1 | 3.061e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1121.430281988317 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.487795036156928, dt = 0.01011522190632334 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.66 us    (0.9%)
   patch tree reduce : 952.00 ns  (0.2%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 751.00 ns  (0.2%)
   LB compute        : 374.45 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 2.69 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.391018798566293e-19,-4.290244917139196e-17,-1.796219423200185e-17)
    sum a = (-1.1104008337814441e-16,-1.4463430453304228e-16,5.571324651620913e-17)
    sum e = 2.592001022883947
    sum de = -8.131516293641283e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011412429646584907
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.008891100344079e-19,-4.353256036898623e-17,-1.757724825066087e-17)
    sum a = (5.928460847237637e-17,-1.4374439138986617e-16,5.2692225582795515e-17)
    sum e = 2.59200082030211
    sum de = -7.860465750519907e-19
Info: CFL hydro = 0.005251939121541516 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005251939121541516 cfl multiplier : 0.4654746917234324        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2405e+04 |  512 |      1 | 4.127e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 882.2955905659685 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.497910258063252, dt = 0.0020897419367482684 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (1.1%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 399.19 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.641945445185151e-19,-4.381724475442661e-17,-1.7430880957375328e-17)
    sum a = (-4.955411081475347e-17,4.927308561164523e-17,9.182498511561832e-17)
    sum e = 2.592000829879604
    sum de = -2.371692252312041e-19
Info: CFL hydro = 0.007262182046888368 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007262182046888368 cfl multiplier : 0.6436497944822883        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5725e+04 |  512 |      1 | 3.256e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 231.06052470281116 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 874                                                     [SPH][rank=0]
Info: time since start : 744.1388803450001 (s)                                        [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.149823638771323 max=0.15018518974075198 delta=0.00036155096942899756
Number of particle pairs: 130816
Distance min=0.147316 max=1.990592 mean=0.806356
---------------- t = 6.5, dt = 0.007262182046888368 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.21 us   (1.5%)
   patch tree reduce : 1502.00 ns (0.2%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.1%)
   LB compute        : 637.82 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (72.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1714678586379785e-19,-4.319006090269806e-17,-1.6691726126283336e-17)
    sum a = (4.3394975113297817e-17,-2.0561677360753094e-17,-8.915524568609001e-17)
    sum e = 2.5920009221216835
    sum de = 6.166399856011306e-19
Info: CFL hydro = 0.00860236103883242 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00860236103883242 cfl multiplier : 0.7624331963215255         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6142e+04 |  512 |      1 | 3.172e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 824.2281856323887 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.5072621820468886, dt = 0.00860236103883242 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.72 us    (0.9%)
   patch tree reduce : 1313.00 ns (0.3%)
   gen split merge   : 611.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 762.00 ns  (0.2%)
   LB compute        : 416.12 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.806608650131388e-19,-4.3676732152872487e-17,-1.817296313433303e-17)
    sum a = (7.981701237447236e-17,2.9484227559439804e-17,-1.6980947897815567e-16)
    sum e = 2.5920009582439834
    sum de = 3.6591823321385775e-19
Info: CFL hydro = 0.009497794768737433 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009497794768737433 cfl multiplier : 0.8416221308810169        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6364e+04 |  512 |      1 | 3.129e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 989.8074218248921 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.515864543085721, dt = 0.009497794768737433 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 us    (0.7%)
   patch tree reduce : 661.00 ns  (0.2%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 652.00 ns  (0.2%)
   LB compute        : 405.34 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1003706586475433e-18,-4.312126827485385e-17,-2.006988325531367e-17)
    sum a = (3.461586486203094e-17,1.2060664966728752e-16,5.252829421431571e-17)
    sum e = 2.592000982949333
    sum de = 1.8092623753351855e-18
Info: CFL hydro = 0.010098071668395795 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010098071668395795 cfl multiplier : 0.8944147539206778        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6851e+04 |  512 |      1 | 3.038e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1125.3239486113982 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.5253623378544585, dt = 0.010098071668395795 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.85 us    (1.0%)
   patch tree reduce : 902.00 ns  (0.2%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 611.00 ns  (0.2%)
   LB compute        : 385.45 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.63 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2050232733467068e-18,-4.1591730060019925e-17,-1.855132258747616e-17)
    sum a = (2.0978092310150466e-17,-9.21177197021894e-17,-6.097075969102583e-17)
    sum e = 2.592000998700856
    sum de = -1.0638733817514012e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011452524770370514
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.163308594760327e-18,-4.2714367199520044e-17,-1.9067999132774128e-17)
    sum a = (3.790034692335853e-17,-1.3147295752080624e-16,-8.141534321715049e-17)
    sum e = 2.592000821155084
    sum de = -1.2197274440461925e-18
Info: CFL hydro = 0.005252070433140007 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005252070433140007 cfl multiplier : 0.4648049179735592        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2453e+04 |  512 |      1 | 4.111e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 884.193203293963 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 6.535460409522854, dt = 0.005252070433140007 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.1%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 430.35 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.477266438857817e-18,-4.354134240658336e-17,-1.9602239753266358e-17)
    sum a = (4.061253286793964e-17,3.722413002837932e-17,5.4378376801444974e-17)
    sum e = 2.5920008687214158
    sum de = -6.166399856011306e-19
Info: CFL hydro = 0.007271084955512903 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007271084955512903 cfl multiplier : 0.6432032786490395        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6187e+04 |  512 |      1 | 3.163e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 597.778933497923 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 6.540712479955994, dt = 0.007271084955512903 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (1.1%)
   patch tree reduce : 892.00 ns  (0.2%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 751.00 ns  (0.2%)
   LB compute        : 371.10 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 2.60 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (74.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7282863468425235e-18,-4.2875371222134137e-17,-1.8812588205990855e-17)
    sum a = (2.9560338551948286e-17,-3.618199490018625e-18,-2.7657563739236224e-17)
    sum e = 2.5920009109371693
    sum de = -1.1858461261560205e-18
Info: CFL hydro = 0.008615896241820426 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008615896241820426 cfl multiplier : 0.7621355190993597        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6367e+04 |  512 |      1 | 3.128e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 836.7563236640613 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.547983564911507, dt = 0.008615896241820426 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.1%)
   patch tree reduce : 1824.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 375.74 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (75.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.903927098785175e-18,-4.296172792517261e-17,-1.9334387606553815e-17)
    sum a = (1.4152546322365734e-16,-2.6006540670975297e-17,-4.227087430086485e-18)
    sum e = 2.592000946073943
    sum de = -2.202285662861181e-18
Info: CFL hydro = 0.00950506163858627 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00950506163858627 cfl multiplier : 0.8414236793995732         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6336e+04 |  512 |      1 | 3.134e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 989.6427740333929 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.556599461153327, dt = 0.00950506163858627 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.05 us    (1.0%)
   patch tree reduce : 1403.00 ns (0.4%)
   gen split merge   : 591.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 375.03 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 2.77 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 19.50 us   (93.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.720345208458765e-18,-4.335545594411072e-17,-1.9273645179840315e-17)
    sum a = (-1.6861512186494565e-18,1.1457631718392313e-16,-3.4659775050016606e-17)
    sum e = 2.5920009731604954
    sum de = -2.913793338554793e-19
Info: CFL hydro = 0.010095657659934022 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010095657659934022 cfl multiplier : 0.8942824529330489        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6489e+04 |  512 |      1 | 3.105e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1102.0131334750427 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.566104522791914, dt = 0.010095657659934022 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.13 us    (1.0%)
   patch tree reduce : 1283.00 ns (0.3%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 409.75 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.003877307826031e-18,-4.150537335698146e-17,-1.964761361418488e-17)
    sum a = (-6.13922974956882e-17,6.683130611417898e-17,-3.621712305057478e-17)
    sum e = 2.5920009945833575
    sum de = 7.487771253728015e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010665840909933952
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.757248418639891e-18,-4.1749806736768315e-17,-1.9611021790863492e-17)
    sum a = (7.037339461168912e-18,-1.2642035855658928e-16,-9.591155994415069e-17)
    sum e = 2.592000824212398
    sum de = -1.179069862577986e-18
Info: CFL hydro = 0.005245181241544087 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005245181241544087 cfl multiplier : 0.4647608176443496        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2331e+04 |  512 |      1 | 4.152e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 875.2835346840592 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.576200180451848, dt = 0.005245181241544087 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.19 us    (1.0%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 400.37 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 us    (73.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.127923588885529e-18,-4.3443276320082044e-17,-2.0450804136089295e-17)
    sum a = (-5.340649797402897e-17,6.362878973709129e-17,4.2153780466236414e-17)
    sum e = 2.59200086949728
    sum de = -4.743384504624082e-20
Info: CFL hydro = 0.007257658283379198 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007257658283379198 cfl multiplier : 0.6431738784295664        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6414e+04 |  512 |      1 | 3.119e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 605.3637462019791 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.581445361693392, dt = 0.007257658283379198 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.98 us    (1.0%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 702.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 375.89 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.678941916732125e-18,-4.242748730468038e-17,-1.9838805891039117e-17)
    sum a = (1.390138004708774e-16,6.264520152621245e-18,4.1650276977334145e-17)
    sum e = 2.5920009133714617
    sum de = -9.825582188149884e-20
Info: CFL hydro = 0.008596784250048107 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008596784250048107 cfl multiplier : 0.7621159189530443        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5866e+04 |  512 |      1 | 3.227e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 809.6700710628304 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.588703019976771, dt = 0.008596784250048107 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.2%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 400.70 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.543935671864855e-18,-4.2592882346093044e-17,-1.9421842064291927e-17)
    sum a = (-2.8570895649338013e-18,5.0727976506903525e-17,-2.6404659708711974e-17)
    sum e = 2.592000952848262
    sum de = 2.315788077793257e-18
Info: CFL hydro = 0.009487806986093096 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009487806986093096 cfl multiplier : 0.841410612635363         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6357e+04 |  512 |      1 | 3.130e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 988.7152072776336 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.597299804226819, dt = 0.009487806986093096 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.1%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 424.42 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.766633864960318e-18,-4.1894710357121e-17,-1.9964132885914866e-17)
    sum a = (-2.5151755678187727e-17,6.970065393992545e-17,2.798542647619584e-18)
    sum e = 2.592000986324029
    sum de = 1.8973538018496328e-18
Info: CFL hydro = 0.010081860122989986 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010081860122989986 cfl multiplier : 0.8942737417569088        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6059e+04 |  512 |      1 | 3.188e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1071.3062638301271 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.606787611212912, dt = 0.010081860122989986 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.45 us    (1.2%)
   patch tree reduce : 1273.00 ns (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 368.28 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.387725534467368e-18,-4.1167264909491854e-17,-1.974988776036815e-17)
    sum a = (1.5807667674838656e-17,-4.7428857716247387e-17,-2.37700484295722e-18)
    sum e = 2.5920010145270664
    sum de = -1.2849489809847736e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010478531287117244
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.744861730084093e-18,-4.1773225503694e-17,-1.9781539687541148e-17)
    sum a = (8.421388586477008e-17,-6.265105621794387e-17,7.856996303567954e-18)
    sum e = 2.5920008283449683
    sum de = 1.6601845766184287e-19
Info: CFL hydro = 0.005240231175795166 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005240231175795166 cfl multiplier : 0.46475791391896965       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2306e+04 |  512 |      1 | 4.161e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 872.35439864533 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 6.616869471335902, dt = 0.005240231175795166 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.2%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 391.84 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (73.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.598183049938809e-18,-4.214353475570642e-17,-1.9679814418707698e-17)
    sum a = (-1.2632082879715512e-16,4.891302207016279e-17,-3.3055589515607055e-17)
    sum e = 2.5920008777964014
    sum de = 7.000727309056792e-19
Info: CFL hydro = 0.0072523874679088895 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0072523874679088895 cfl multiplier : 0.6431719426126464       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6159e+04 |  512 |      1 | 3.169e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 595.3864331501047 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.622109702511698, dt = 0.0072523874679088895 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.29 us    (1.1%)
   patch tree reduce : 1312.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 375.26 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.066083407472387e-18,-4.1610757808147046e-17,-2.0102084059836488e-17)
    sum a = (5.37929076283028e-17,1.1791349147083351e-16,2.224782857940255e-19)
    sum e = 2.592000927082697
    sum de = -8.455506395966053e-19
Info: CFL hydro = 0.008595364161252887 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008595364161252887 cfl multiplier : 0.7621146284084309        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6099e+04 |  512 |      1 | 3.180e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 820.9493296222289 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.629362089979606, dt = 0.008595364161252887 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.88 us    (1.0%)
   patch tree reduce : 1031.00 ns (0.3%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 581.00 ns  (0.1%)
   LB compute        : 381.51 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 2.79 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.215798496230328e-18,-4.017928567981444e-17,-1.9870823736445332e-17)
    sum a = (-6.650929806895078e-17,-5.0824578920471986e-17,2.780978572425319e-17)
    sum e = 2.5920009716107906
    sum de = 2.3979502736769243e-18
Info: CFL hydro = 0.009489179125966217 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009489179125966217 cfl multiplier : 0.8414097522722873        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6236e+04 |  512 |      1 | 3.153e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 981.2398075032012 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.637957454140859, dt = 0.009489179125966217 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (1.1%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 394.21 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.55 us    (76.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.009000163091026e-18,-4.1534646815638564e-17,-1.953674038952108e-17)
    sum a = (-1.8608552199150808e-16,-6.498707821878113e-17,-3.043268761993012e-17)
    sum e = 2.5920010081991474
    sum de = -8.555032767268433e-19
Info: CFL hydro = 0.010085657047591356 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010085657047591356 cfl multiplier : 0.8942731681815248        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6223e+04 |  512 |      1 | 3.156e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1082.3850033895858 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.647446633266825, dt = 0.010085657047591356 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.3%)
   patch tree reduce : 1652.00 ns (0.4%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 365.06 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.62 us    (74.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5705210569538775e-18,-4.2095233548922194e-17,-2.0191002190507458e-17)
    sum a = (-7.653253031314478e-17,1.32760989701719e-16,-4.8482702227903294e-17)
    sum e = 2.5920010366169652
    sum de = -6.06475590234079e-19
Info: CFL hydro = 0.010486006095833108 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010486006095833108 cfl multiplier : 0.9295154454543498        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5998e+04 |  512 |      1 | 3.200e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1134.4815256732252 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.657532290314417, dt = 0.010486006095833108 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.3%)
   patch tree reduce : 1924.00 ns (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 373.66 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (72.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2543677034571043e-18,-3.967870953677788e-17,-2.072341321983362e-17)
    sum a = (5.166179983806529e-17,-9.461181837977505e-18,7.458291796658134e-17)
    sum e = 2.5920010574192727
    sum de = 4.506215279392878e-19
Info: CFL hydro = 0.010756886184229797 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010756886184229797 cfl multiplier : 0.9530102969695665        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6361e+04 |  512 |      1 | 3.129e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1206.3244869290536 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.66801829641025, dt = 0.010756886184229797 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1333.00 ns (0.3%)
   LB compute        : 399.49 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.51 us    (75.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5321541738398957e-18,-4.063741530779819e-17,-1.934243780768452e-17)
    sum a = (9.044327786700279e-17,-7.318364664277155e-18,8.577123386532826e-18)
    sum e = 2.5920010713232453
    sum de = -1.2739375526704677e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010409631481108524
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8014699934852948e-18,-4.053642187543116e-17,-1.9616876482594914e-17)
    sum a = (2.0859095700709318e-16,8.94245615057354e-17,-6.863455116745687e-17)
    sum e = 2.592000834333347
    sum de = -8.131516293641283e-20
Info: CFL hydro = 0.005466677013210708 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005466677013210708 cfl multiplier : 0.48433676565652223       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2628e+04 |  512 |      1 | 4.054e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 955.114464354658 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 6.67877518259448, dt = 0.005466677013210708 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 389.26 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.55202282118039e-18,-3.9643581386389346e-17,-2.0473856984781768e-17)
    sum a = (1.5627343169510865e-16,-1.388498691023976e-16,-6.012475673583539e-17)
    sum e = 2.5920008947275477
    sum de = 3.5575383784680614e-19
Info: CFL hydro = 0.00740213141955309 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00740213141955309 cfl multiplier : 0.6562245104376815         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6439e+04 |  512 |      1 | 3.114e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 631.8854796927561 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.684241859607691, dt = 0.00740213141955309 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.85 us    (1.0%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 661.00 ns  (0.2%)
   LB compute        : 381.27 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.465354731282179e-18,-4.1108717992177635e-17,-2.0806110740539952e-17)
    sum a = (-3.796182118653846e-17,-1.2093451240424713e-16,-8.934552316736122e-17)
    sum e = 2.5920009448127876
    sum de = 2.0057740190981832e-18
Info: CFL hydro = 0.008688509521590823 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008688509521590823 cfl multiplier : 0.7708163402917876        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6069e+04 |  512 |      1 | 3.186e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 836.3330635719512 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.691643991027244, dt = 0.008688509521590823 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 392.95 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.399800836163426e-18,-4.219622698128922e-17,-2.1710660613044607e-17)
    sum a = (2.330167309105846e-17,2.3465604459538268e-17,-3.110890451490933e-17)
    sum e = 2.592000984901639
    sum de = 1.1655173354219173e-18
Info: CFL hydro = 0.00954341118491711 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00954341118491711 cfl multiplier : 0.8472108935278584         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6240e+04 |  512 |      1 | 3.153e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 992.0941512362899 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.700332500548835, dt = 0.00954341118491711 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (1.1%)
   patch tree reduce : 1022.00 ns (0.3%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 389.75 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (73.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.944287167185646e-18,-4.1165801236558996e-17,-2.1801408334881646e-17)
    sum a = (-9.297250469497697e-18,-3.981190377366772e-17,-7.096398664009629e-17)
    sum e = 2.5920010125038955
    sum de = -7.589415207398531e-19
Info: CFL hydro = 0.01011230882794383 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01011230882794383 cfl multiplier : 0.898140595685239          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6209e+04 |  512 |      1 | 3.159e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1087.6470711457587 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.709875911733752, dt = 0.01011230882794383 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.19 us    (1.0%)
   patch tree reduce : 1313.00 ns (0.3%)
   gen split merge   : 682.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 388.27 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.783283144571549e-18,-4.222257309408062e-17,-2.269937167918845e-17)
    sum a = (-7.89915008403419e-17,-5.68139285617164e-17,1.190287645058902e-16)
    sum e = 2.5920010289093227
    sum de = -1.4433441421213278e-18
Info: CFL hydro = 0.010492242810979985 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010492242810979985 cfl multiplier : 0.9320937304568261        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6230e+04 |  512 |      1 | 3.155e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1153.9858572515423 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.719988220561696, dt = 0.010492242810979985 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.59 us    (0.9%)
   patch tree reduce : 1062.00 ns (0.3%)
   gen split merge   : 591.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 721.00 ns  (0.2%)
   LB compute        : 381.48 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 2.80 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4601228132702386e-18,-4.2853416128141307e-17,-2.0477516167113906e-17)
    sum a = (2.1404752970077823e-17,-1.8196381901258717e-17,-1.2616421579333958e-16)
    sum e = 2.592001036626375
    sum de = 1.4230153513872246e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01124033405850894
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.779203512632723e-18,-4.2636792534078704e-17,-2.1723833669440306e-17)
    sum a = (-3.2411573425150666e-17,-7.037339461168913e-17,8.215962090350747e-17)
    sum e = 2.5920008335695033
    sum de = -2.981555974335137e-19
Info: CFL hydro = 0.005374717269257782 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005374717269257782 cfl multiplier : 0.47736457681894207       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2264e+04 |  512 |      1 | 4.175e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 904.7863713437467 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.730480463372676, dt = 0.005374717269257782 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.2%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 406.57 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4630501591359496e-18,-4.3267269649906184e-17,-2.0135016700825736e-17)
    sum a = (-4.8383172468469124e-17,-7.657936784699614e-17,1.4481579997671633e-17)
    sum e = 2.5920008864427047
    sum de = 2.1006417091906648e-19
Info: CFL hydro = 0.007337113692414161 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007337113692414161 cfl multiplier : 0.6515763845459613        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6504e+04 |  512 |      1 | 3.102e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 623.7115623358203 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.735855180641934, dt = 0.007337113692414161 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (1.1%)
   patch tree reduce : 1824.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.2%)
   LB compute        : 394.81 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.15860618910202e-18,-4.376747987470952e-17,-2.0218446057998495e-17)
    sum a = (-1.4379122892371753e-17,-2.4917568008930855e-17,7.151505949931636e-18)
    sum e = 2.5920009288873986
    sum de = -2.507217523872729e-19
Info: CFL hydro = 0.008647714829822396 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008647714829822396 cfl multiplier : 0.7677175896973075        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6494e+04 |  512 |      1 | 3.104e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 850.9207370682707 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.7431922943343485, dt = 0.008647714829822396 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.50 us    (1.1%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 399.00 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.24 us    (72.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8541622190680903e-18,-4.3727045909939393e-17,-2.0110866097433623e-17)
    sum a = (2.7481922987293572e-17,4.4706426061136283e-17,-5.36055574928973e-17)
    sum e = 2.5920009618304825
    sum de = 7.724940478959219e-19
Info: CFL hydro = 0.009525443837939096 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009525443837939096 cfl multiplier : 0.8451450597982051        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5941e+04 |  512 |      1 | 3.212e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 969.3020982610417 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.751840009164171, dt = 0.009525443837939096 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.2%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 396.27 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.50 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5918533772272274e-18,-4.299026954736329e-17,-2.0956137216157633e-17)
    sum a = (2.5491327798610184e-17,-6.224708248847577e-17,8.514478185006613e-17)
    sum e = 2.5920009844051664
    sum de = -8.74138001566438e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010554618202538366
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3635203997017804e-18,-4.356768851937476e-17,-2.0312852962167672e-17)
    sum a = (-1.2615689742867532e-16,3.079567850727827e-17,3.066394794332128e-17)
    sum e = 2.592000834377457
    sum de = 2.358139725155972e-18
Info: CFL hydro = 0.005056180006065909 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005056180006065909 cfl multiplier : 0.4483816865994017        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2573e+04 |  512 |      1 | 4.072e-02 | 0.0% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 842.1177830063724 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.76136545300211, dt = 0.005056180006065909 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.2%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 382.92 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.908629504443482e-18,-4.2997587912027566e-17,-2.036700886068332e-17)
    sum a = (-1.2428339607462034e-16,-4.210694293238504e-17,1.0952371821970619e-16)
    sum e = 2.5920008762693327
    sum de = -8.402566836762659e-19
Info: CFL hydro = 0.00712970193385598 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00712970193385598 cfl multiplier : 0.6322544577329344         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4489e+04 |  512 |      1 | 3.534e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 515.1130071234237 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.766421633008176, dt = 0.00712970193385598 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (0.7%)
   patch tree reduce : 1933.00 ns (0.3%)
   gen split merge   : 762.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.1%)
   LB compute        : 734.39 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.80 us    (76.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1592289628215014e-18,-4.3572079538173327e-17,-1.9329264751288822e-17)
    sum a = (-1.288207821664722e-16,4.7212234122184784e-17,7.400037613930488e-17)
    sum e = 2.592000916093572
    sum de = -1.2468324983583301e-18
Info: CFL hydro = 0.008513008568114112 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008513008568114112 cfl multiplier : 0.7548363051552895        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2480e+04 |  512 |      1 | 4.103e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 625.6284933940036 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.773551334942032, dt = 0.008513008568114112 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (0.7%)
   patch tree reduce : 2.08 us    (0.3%)
   gen split merge   : 731.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.1%)
   LB compute        : 697.96 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.45 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1123914289701276e-19,-4.2838779398812754e-17,-1.8877721651502922e-17)
    sum a = (-4.581881749010641e-17,1.2739809207573672e-17,-1.212213922990868e-17)
    sum e = 2.592000949354536
    sum de = -1.0842021724855044e-19
Info: CFL hydro = 0.009431820199833177 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009431820199833177 cfl multiplier : 0.8365575367701931        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5412e+04 |  512 |      1 | 3.322e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 922.5452601965806 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.782064343510146, dt = 0.009431820199833177 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 21.89 us   (5.0%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 402.91 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.41 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1123914289701276e-19,-4.2739249639378584e-17,-1.9357074537013074e-17)
    sum a = (1.5771514953397126e-16,1.1940058317061465e-16,4.004609144292459e-18)
    sum e = 2.592000974936447
    sum de = 1.6635727084074459e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010565381653873702
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.664943762504151e-19,-4.232576203584693e-17,-1.935304943644772e-17)
    sum a = (-1.2939600562908437e-16,7.728193085476675e-17,-4.140145257874872e-17)
    sum e = 2.5920008358399853
    sum de = 5.183841637196318e-19
Info: CFL hydro = 0.005021414633346762 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005021414633346762 cfl multiplier : 0.4455191789233977        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1968e+04 |  512 |      1 | 4.278e-02 | 0.1% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 793.69354473558 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 6.791496163709979, dt = 0.005021414633346762 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.1%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 419.14 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0889726620444407e-18,-4.2094501712455765e-17,-1.9692255638636967e-17)
    sum a = (-4.842561898352193e-18,8.093525849517391e-17,7.038217664928625e-17)
    sum e = 2.5920008748121877
    sum de = 2.371692252312041e-20
Info: CFL hydro = 0.007103308042096518 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007103308042096518 cfl multiplier : 0.6303461192822651        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5711e+04 |  512 |      1 | 3.259e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 554.7084223911398 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.796517578343326, dt = 0.007103308042096518 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1684.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 374.77 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.728193085476676e-19,-4.137949748475589e-17,-1.8847716356379383e-17)
    sum a = (4.9155991777016796e-17,1.1180119330322924e-16,-1.5787176253778678e-17)
    sum e = 2.5920009150299195
    sum de = 1.1858461261560205e-18
Info: CFL hydro = 0.008490914337415488 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008490914337415488 cfl multiplier : 0.7535640795215102        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5770e+04 |  512 |      1 | 3.247e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 787.6327587754116 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.803620886385422, dt = 0.008490914337415488 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.3%)
   patch tree reduce : 1784.00 ns (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 374.04 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4296970685400155e-19,-4.0431769260732e-17,-1.9324141896023826e-17)
    sum a = (1.8565227480338288e-17,6.545545355729487e-18,-3.587755093015232e-17)
    sum e = 2.592000951335632
    sum de = 5.38712954453735e-19
Info: CFL hydro = 0.00941730475749517 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00941730475749517 cfl multiplier : 0.8357093863476734         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6052e+04 |  512 |      1 | 3.190e-02 | 0.0% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 958.3175986871095 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.812111800722838, dt = 0.00941730475749517 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.1%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 429.80 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8149544367407343e-19,-4.07618275070909e-17,-1.9800201517435057e-17)
    sum a = (-1.5339292336324916e-18,1.2568852209016156e-16,-1.0578842489505913e-16)
    sum e = 2.592000982514131
    sum de = 9.706997575534282e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010917285371716576
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4051260155412138e-19,-4.0247346471192214e-17,-2.0148189757221435e-17)
    sum a = (-8.440123600017557e-17,2.4882439858542327e-17,-6.795247958074624e-17)
    sum e = 2.5920008379459487
    sum de = -1.2248096417297183e-18
Info: CFL hydro = 0.005019722415867663 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005019722415867663 cfl multiplier : 0.44523646211589113       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1984e+04 |  512 |      1 | 4.272e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 793.5070042607177 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.821529105480333, dt = 0.005019722415867663 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.2%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.2%)
   LB compute        : 409.68 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.250412935646324e-19,-4.049690270624406e-17,-2.0227959932062055e-17)
    sum a = (-3.766908659996737e-17,1.3543658382297874e-16,3.485590722301923e-17)
    sum e = 2.592000878477425
    sum de = 5.72594272343907e-19
Info: CFL hydro = 0.007106573609896608 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007106573609896608 cfl multiplier : 0.630157641410594         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5829e+04 |  512 |      1 | 3.234e-02 | 0.0% |   2.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 558.6973413515283 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.8265488278962, dt = 0.007106573609896608 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 2.23 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 395.92 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2060664966728752e-18,-3.9263026423846935e-17,-1.971896766966158e-17)
    sum a = (-1.1511494882321394e-16,-1.3088748834766405e-16,3.477686888464504e-17)
    sum e = 2.5920009230617485
    sum de = -1.728794245346027e-18
Info: CFL hydro = 0.00850149581686963 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00850149581686963 cfl multiplier : 0.7534384276070627         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5975e+04 |  512 |      1 | 3.205e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 798.262153161498 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 6.833655401506097, dt = 0.00850149581686963 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.3%)
   patch tree reduce : 1824.00 ns (0.5%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 377.62 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.35 us    (73.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2599110083287856e-18,-4.1372179120091613e-17,-1.9466118170510804e-17)
    sum a = (5.351188242519456e-17,2.859724176212941e-17,-7.756002871200929e-17)
    sum e = 2.592000965267121
    sum de = 1.2579498057910428e-18
Info: CFL hydro = 0.00943700639099514 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00943700639099514 cfl multiplier : 0.8356256184047085         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5805e+04 |  512 |      1 | 3.239e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 944.7679326839373 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.842156897322966, dt = 0.00943700639099514 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (1.1%)
   patch tree reduce : 1903.00 ns (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 412.83 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2031391508071642e-18,-4.041493702200416e-17,-2.0693773842943298e-17)
    sum a = (8.538482421105442e-17,1.5857432554555738e-17,9.358724732677625e-17)
    sum e = 2.5920010028039373
    sum de = 2.956144985917508e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010586188433680201
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1680110004186339e-18,-4.035053541295852e-17,-1.9830206812558593e-17)
    sum a = (9.974052833650048e-17,-1.3458472617605687e-17,4.016318527755302e-18)
    sum e = 2.5920008401180006
    sum de = 1.0316861297557378e-18
Info: CFL hydro = 0.005029463875700672 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005029463875700672 cfl multiplier : 0.4452085394682362        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2279e+04 |  512 |      1 | 4.170e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 814.7614682345721 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.851593903713962, dt = 0.005029463875700672 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (1.1%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 397.42 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.737597896793289e-19,-4.069888957097811e-17,-2.0209664020401364e-17)
    sum a = (-2.6486625392951878e-17,6.929430174194145e-17,7.432238418453308e-17)
    sum e = 2.5920008857283467
    sum de = -1.0909784360635388e-18
Info: CFL hydro = 0.007116305119806546 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007116305119806546 cfl multiplier : 0.6301390263121575        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6638e+04 |  512 |      1 | 3.077e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 588.3829984982227 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.856623367589663, dt = 0.007116305119806546 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.64 us    (0.9%)
   patch tree reduce : 1153.00 ns (0.3%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 389.29 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 2.67 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.635670303847043e-19,-3.99538800481547e-17,-1.947947418602311e-17)
    sum a = (-3.817259008886964e-17,-1.282031121888072e-16,5.4460342485684875e-17)
    sum e = 2.59200093628819
    sum de = 1.4060746924421386e-19
Info: CFL hydro = 0.008505375265904471 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008505375265904471 cfl multiplier : 0.7534260175414383        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6552e+04 |  512 |      1 | 3.093e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 828.2128063950188 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.863739672709469, dt = 0.008505375265904471 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.1%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 413.78 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.378779902749816e-18,-4.169711451118552e-17,-1.912929043683745e-17)
    sum a = (-1.7004366664741255e-16,-3.919716114186844e-17,1.2171465007745908e-16)
    sum e = 2.592000983475441
    sum de = -9.215718466126788e-19
Info: CFL hydro = 0.009430009811976848 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009430009811976848 cfl multiplier : 0.8356173450276255        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6072e+04 |  512 |      1 | 3.186e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 961.16397595495 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 6.872245047975373, dt = 0.009430009811976848 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.51 us    (1.0%)
   patch tree reduce : 2.09 us    (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 416.72 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.32 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.527451768181588e-18,-4.1685405127722676e-17,-1.7694342085289306e-17)
    sum a = (-3.470661258386798e-17,-1.17989602463342e-16,1.9847404969519644e-17)
    sum e = 2.5920010235538427
    sum de = 1.9651164376299768e-19
Info: CFL hydro = 0.010046030322708996 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010046030322708996 cfl multiplier : 0.8904115633517504        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5697e+04 |  512 |      1 | 3.262e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.7562048943773 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.8816750577873504, dt = 0.010046030322708996 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.2%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 383.00 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.205443722953394e-18,-4.3418393880223505e-17,-1.786248151345107e-17)
    sum a = (-3.8781478028937496e-17,1.3527850714623035e-16,8.123823879227498e-17)
    sum e = 2.592001055635197
    sum de = -2.981555974335137e-19
Info: CFL hydro = 0.010457346103280779 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010457346103280779 cfl multiplier : 0.9269410422345002        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6120e+04 |  512 |      1 | 3.176e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1138.6425821039934 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.891721088110059, dt = 0.010457346103280779 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (1.2%)
   patch tree reduce : 1674.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 372.80 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.6504002945414445e-18,-4.073840874016521e-17,-1.6804428942113204e-17)
    sum a = (1.1957622392255729e-16,1.2190639123166313e-16,4.2308655358444177e-17)
    sum e = 2.592001079684545
    sum de = 7.453889935837843e-19
Info: CFL hydro = 0.010733173045953946 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010733173045953946 cfl multiplier : 0.9512940281563335        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5973e+04 |  512 |      1 | 3.205e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1174.4750153822647 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.90217843421334, dt = 0.010733173045953946 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.2%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 421.18 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.610040226140974e-18,-3.9205211342999144e-17,-1.6531636899252273e-17)
    sum a = (-2.885192085244626e-17,-5.605281863663158e-17,6.614337983573693e-18)
    sum e = 2.5920010959089907
    sum de = -5.624298769768554e-19
Info: CFL hydro = 0.010919578773977066 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010919578773977066 cfl multiplier : 0.9675293521042224        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5916e+04 |  512 |      1 | 3.217e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1201.1753093184277 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.912911607259294, dt = 0.010919578773977066 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 401.16 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.852698546135235e-18,-4.086282093945792e-17,-1.6625494926071625e-17)
    sum a = (-2.1685778173186065e-17,1.7165956156528495e-17,-6.294086345864925e-17)
    sum e = 2.5920011046648264
    sum de = 4.0657581468206416e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010349720591294345
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7604871513653427e-18,-4.0531299020166164e-17,-1.700531805214761e-17)
    sum a = (-2.786833264156741e-17,-1.2141459712622372e-16,-1.165083654552923e-16)
    sum e = 2.5920008483915673
    sum de = 1.5449880957918438e-18
Info: CFL hydro = 0.00552411454089386 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00552411454089386 cfl multiplier : 0.48917645070140753        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1852e+04 |  512 |      1 | 4.320e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 910.0021405116171 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.92383118603327, dt = 0.00552411454089386 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 405.01 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (74.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.8161067228138492e-18,-4.204473683273868e-17,-1.7958718008786318e-17)
    sum a = (-7.259817746962937e-18,-1.3150808567119477e-16,-2.169163286491749e-18)
    sum e = 2.5920009133000113
    sum de = -1.497554250745603e-18
Info: CFL hydro = 0.007449185168593834 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007449185168593834 cfl multiplier : 0.6594509671342718        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5852e+04 |  512 |      1 | 3.230e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 615.7326088099574 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.929355300574164, dt = 0.007449185168593834 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.2%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 422.47 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (74.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7970789746867287e-18,-4.295148221464262e-17,-1.7721785952780344e-17)
    sum a = (1.8055869299704597e-17,7.646227401236772e-17,-4.486450273788467e-17)
    sum e = 2.592000964457206
    sum de = 9.486769009248164e-20
Info: CFL hydro = 0.008730903054527945 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008730903054527945 cfl multiplier : 0.7729673114228479        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5929e+04 |  512 |      1 | 3.214e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 834.2986197672501 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.9368044857427575, dt = 0.008730903054527945 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.2%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 386.09 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.37 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6126561851469443e-18,-4.146841561542686e-17,-1.8183940681329448e-17)
    sum a = (-6.779733024986356e-17,-9.484600604903192e-19,-1.0655538951187537e-18)
    sum e = 2.5920010036219483
    sum de = 7.250602028496811e-19
Info: CFL hydro = 0.00957361034947838 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00957361034947838 cfl multiplier : 0.8486448742818986         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6205e+04 |  512 |      1 | 3.159e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 994.8348192476575 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.9455353887972855, dt = 0.00957361034947838 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.2%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 396.91 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.6767464073328425e-18,-4.17706640760615e-17,-1.797756279779683e-17)
    sum a = (-2.2130734744774117e-17,-2.51985932120391e-17,1.8193454555393008e-17)
    sum e = 2.5920010276707273
    sum de = 2.168404344971009e-19
Info: CFL hydro = 0.010130705402483673 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010130705402483673 cfl multiplier : 0.899096582854599         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5963e+04 |  512 |      1 | 3.207e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1074.5262086712967 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.955108999146764, dt = 0.010130705402483673 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (1.1%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 409.43 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.7060198659899515e-18,-4.228779801915099e-17,-1.7713003915183212e-17)
    sum a = (9.173131004791557e-17,5.0619664709872227e-17,3.144554928946608e-17)
    sum e = 2.59200103840565
    sum de = 8.809142651444724e-20
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010474013421782068
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.089081724791387e-18,-4.190477310853438e-17,-1.764055210500687e-17)
    sum a = (8.280875984922886e-17,8.7211488031258e-17,1.446694326834308e-16)
    sum e = 2.59200084630114
    sum de = -1.1519648082658485e-18
Info: CFL hydro = 0.00525009868348534 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00525009868348534 cfl multiplier : 0.46636552761819966        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1853e+04 |  512 |      1 | 4.320e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 844.2742891293925 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.965239704549247, dt = 0.00525009868348534 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1903.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 415.66 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.25 us    (73.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.8907540423894764e-18,-4.12635928843854e-17,-1.62947048432463e-17)
    sum a = (-1.901603874365776e-17,6.27154578269895e-17,8.810725586616552e-17)
    sum e = 2.5920008977128948
    sum de = -1.3552527156068805e-20
Info: CFL hydro = 0.007249243804529268 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007249243804529268 cfl multiplier : 0.6442436850787998        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5938e+04 |  512 |      1 | 3.213e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 588.3345554964535 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.9704898032327325, dt = 0.007249243804529268 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (1.1%)
   patch tree reduce : 1824.00 ns (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 391.24 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.25154942033834e-18,-4.0753045469493763e-17,-1.580254481957366e-17)
    sum a = (4.859394137080031e-17,-3.477686888464504e-18,8.320102419523412e-17)
    sum e = 2.5920009384081464
    sum de = -4.87890977618477e-19
Info: CFL hydro = 0.008579285009771719 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008579285009771719 cfl multiplier : 0.7628291233858665        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6439e+04 |  512 |      1 | 3.115e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 837.9052961750468 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.977739047037262, dt = 0.008579285009771719 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.47 us    (0.8%)
   patch tree reduce : 731.00 ns  (0.2%)
   gen split merge   : 601.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 431.00 ns  (0.1%)
   LB compute        : 408.88 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.60 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6741304483268724e-18,-4.1005529050411326e-17,-1.5160724238516554e-17)
    sum a = (-2.1201009697824345e-16,1.3079381327996131e-17,-4.6778986934059575e-18)
    sum e = 2.5920009673359607
    sum de = 6.2341624917916505e-19
Info: CFL hydro = 0.009464493855340253 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009464493855340253 cfl multiplier : 0.8418860822572443        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6305e+04 |  512 |      1 | 3.140e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 983.5802807685109 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.986318332047033, dt = 0.009464493855340253 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 us    (0.8%)
   patch tree reduce : 631.00 ns  (0.2%)
   gen split merge   : 601.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 591.00 ns  (0.1%)
   LB compute        : 396.92 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.68 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.7632121731182595e-18,-4.104541413783164e-17,-1.5532497163461834e-17)
    sum a = (-1.35828848168984e-18,-1.3006783150526502e-16,1.3791311842537012e-16)
    sum e = 2.592000983385775
    sum de = 1.3552527156068805e-20
Info: CFL hydro = 0.010054719698576114 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010054719698576114 cfl multiplier : 0.8945907215048295        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7412e+04 |  512 |      1 | 2.941e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1158.7159431885582 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.995782825902373, dt = 0.004217174097626675 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 us    (0.8%)
   patch tree reduce : 581.00 ns  (0.1%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 601.00 ns  (0.1%)
   LB compute        : 399.41 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.70753807029628e-18,-4.2137680063975e-17,-1.4324966993856104e-17)
    sum a = (1.6582828860078892e-16,7.430774745520451e-17,-4.1568311293094236e-18)
    sum e = 2.5920008706032487
    sum de = -9.622294280808852e-19
Info: CFL hydro = 0.010450446908777613 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010450446908777613 cfl multiplier : 0.9297271476698864        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6621e+04 |  512 |      1 | 3.080e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 492.84579040407806 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 935                                                     [SPH][rank=0]
Info: time since start : 747.121893684 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14983661110633822 max=0.15022148426212534 delta=0.00038487315578711323
Number of particle pairs: 130816
Distance min=0.146775 max=1.988630 mean=0.806128
---------------- t = 7, dt = 0.010450446908777613 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.86 us    (1.6%)
   patch tree reduce : 1723.00 ns (0.3%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.1%)
   LB compute        : 594.51 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    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5636231418962875e-18,-4.099674701281419e-17,-1.4535735896187285e-17)
    sum a = (3.121721631194063e-17,1.7435271976173895e-17,2.3664663978406608e-17)
    sum e = 2.592000999067193
    sum de = 1.666960840196463e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012235837717613492
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.5223289129165945e-18,-4.119580653168253e-17,-1.4468406941275934e-17)
    sum a = (-2.6638847377968843e-17,1.4273738441206162e-17,2.5959703137123925e-17)
    sum e = 2.5920008458733177
    sum de = 1.429791614965259e-18
Info: CFL hydro = 0.005357856090402223 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005357856090402223 cfl multiplier : 0.4765757158899621        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1907e+04 |  512 |      1 | 4.300e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 874.9140355023492 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.010450446908778, dt = 0.005357856090402223 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.51 us    (1.1%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 405.18 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.883032811307155e-18,-4.106846698652411e-17,-1.4297889044598278e-17)
    sum a = (2.1021856130842842e-16,-2.3477313843001112e-17,-2.1814581391277344e-17)
    sum e = 2.5920008854965024
    sum de = 5.624298769768554e-19
Info: CFL hydro = 0.007315315986538855 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007315315986538855 cfl multiplier : 0.6510504772599748        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6506e+04 |  512 |      1 | 3.102e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 621.8129265193115 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.01580830299918, dt = 0.007315315986538855 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.20 us    (1.1%)
   patch tree reduce : 1192.00 ns (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.3%)
   LB compute        : 365.07 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.607341579171022e-18,-4.1391206868218734e-17,-1.453719956912014e-17)
    sum a = (5.689589424595632e-17,3.632250750174038e-17,1.523976257689075e-17)
    sum e = 2.5920009159252
    sum de = -6.911788849595091e-19
Info: CFL hydro = 0.008611992482616179 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008611992482616179 cfl multiplier : 0.7673669848399832        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6636e+04 |  512 |      1 | 3.078e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 855.6873670187182 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.023123618985719, dt = 0.008611992482616179 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.2%)
   patch tree reduce : 1654.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 389.43 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.48 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6941556800010096e-18,-4.0845988700730085e-17,-1.4359363307778204e-17)
    sum a = (2.953106509329117e-17,-1.4488020158576197e-16,-3.662109678004288e-17)
    sum e = 2.5920009393424257
    sum de = -1.4568966692773966e-18
Info: CFL hydro = 0.009471260899249817 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009471260899249817 cfl multiplier : 0.8449113232266555        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5779e+04 |  512 |      1 | 3.245e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 955.4924153969007 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.031735611468335, dt = 0.009471260899249817 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 404.54 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4570864046575815e-18,-4.3030520553016817e-17,-1.4887749236539015e-17)
    sum a = (1.276410617825907e-16,3.9847031924056253e-17,1.0462919593223763e-16)
    sum e = 2.5920009566723814
    sum de = 3.3203691532368573e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01053589878840004
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1588859144778634e-18,-4.208279232899292e-17,-1.4262760894209747e-17)
    sum a = (6.03574807321594e-17,1.4004422621560764e-17,8.225841882647523e-18)
    sum e = 2.592000847841819
    sum de = 6.098637220230962e-19
Info: CFL hydro = 0.005021334488388597 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005021334488388597 cfl multiplier : 0.44830377440888514       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2565e+04 |  512 |      1 | 4.075e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 836.7797779054155 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.041206872367585, dt = 0.005021334488388597 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.1%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 413.14 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1211277267881084e-18,-4.198399440602518e-17,-1.4615506071027906e-17)
    sum a = (-6.452894859079738e-17,7.309582626680022e-17,-5.005175961192432e-17)
    sum e = 2.5920008780092396
    sum de = -7.115076756936123e-19
Info: CFL hydro = 0.0070782225604017705 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0070782225604017705 cfl multiplier : 0.63220251627259         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5362e+04 |  512 |      1 | 3.333e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 542.3711997922467 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.046228206855973, dt = 0.0070782225604017705 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.31 us    (1.0%)
   patch tree reduce : 1363.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 394.84 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8793560457863733e-18,-4.1438044402070103e-17,-1.522878502989433e-17)
    sum a = (1.4112734418592066e-17,-1.4637314797727453e-16,7.283236513888624e-17)
    sum e = 2.592000908863703
    sum de = -8.334804200982315e-19
Info: CFL hydro = 0.00844742299612239 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00844742299612239 cfl multiplier : 0.75480167751506           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6621e+04 |  512 |      1 | 3.080e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 827.2299862754799 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.053306429416375, dt = 0.00844742299612239 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.83 us    (1.0%)
   patch tree reduce : 832.00 ns  (0.2%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.2%)
   LB compute        : 369.23 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3871731522241588e-18,-4.356915219230761e-17,-1.417859970057056e-17)
    sum a = (-7.581825792191132e-17,1.3083479612208127e-16,1.2411946470614054e-16)
    sum e = 2.5920009375289155
    sum de = -2.642742795433417e-19
Info: CFL hydro = 0.009359981555027427 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009359981555027427 cfl multiplier : 0.8365344516767067        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6722e+04 |  512 |      1 | 3.062e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 993.2022550688071 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.061753852412497, dt = 0.009359981555027427 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.28 us    (1.0%)
   patch tree reduce : 1303.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 642.00 ns  (0.2%)
   LB compute        : 410.23 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4704969515433607e-18,-4.113213675910332e-17,-1.2701753711319429e-17)
    sum a = (-1.11520168100121e-16,-2.8922177153223315e-18,4.8242659866915e-17)
    sum e = 2.5920009640468233
    sum de = 1.5517643593698782e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011230160790016432
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5770706369668965e-18,-4.162393086454275e-17,-1.3120364170116083e-17)
    sum a = (1.6966896637660157e-16,-9.256560361964316e-17,2.789175140849309e-17)
    sum e = 2.5920008504655616
    sum de = -3.5914196963582334e-19
Info: CFL hydro = 0.004985952390651831 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004985952390651831 cfl multiplier : 0.44551148389223555       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2721e+04 |  512 |      1 | 4.025e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 837.1718967304774 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.071113833967525, dt = 0.004985952390651831 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (1.1%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 382.40 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.420163829480268e-19,-4.2630937842347285e-17,-1.3142319264108914e-17)
    sum a = (2.539765273090744e-17,-7.95462328818941e-17,3.634592626866606e-17)
    sum e = 2.59200088213129
    sum de = -6.2341624917916505e-19
Info: CFL hydro = 0.007055431386733016 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007055431386733016 cfl multiplier : 0.6303409892614904        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6519e+04 |  512 |      1 | 3.099e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 579.117824363704 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 7.076099786358177, dt = 0.007055431386733016 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.79 us    (0.9%)
   patch tree reduce : 921.00 ns  (0.2%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 391.91 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.425524175235342e-19,-4.3077358086868186e-17,-1.280421081661931e-17)
    sum a = (5.0221545672135547e-17,-5.882281966206049e-17,8.504525209063196e-17)
    sum e = 2.592000919317308
    sum de = -3.4558944247975454e-19
Info: CFL hydro = 0.008437713882027464 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008437713882027464 cfl multiplier : 0.7535606595076603        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6000e+04 |  512 |      1 | 3.200e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 793.726605504024 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 7.08315521774491, dt = 0.008437713882027464 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (1.0%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 390.64 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0198686473404947e-19,-4.3415466534357795e-17,-1.1993336011817401e-17)
    sum a = (-5.890990820156538e-17,7.105253885253403e-17,5.971785566050158e-19)
    sum e = 2.5920009570567215
    sum de = 1.1621292036329e-18
Info: CFL hydro = 0.009363953971055598 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009363953971055598 cfl multiplier : 0.8357071063384401        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6129e+04 |  512 |      1 | 3.174e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 956.9021556135441 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.091592931626937, dt = 0.009363953971055598 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.25 us    (1.0%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 393.69 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2280215906657065e-18,-4.226501960913343e-17,-1.2321198748777018e-17)
    sum a = (1.2749176714343946e-16,2.802055462658437e-17,4.081891075147226e-17)
    sum e = 2.5920009939422495
    sum de = 1.2146452463626667e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01151017386917576
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5138582621792026e-19,-4.249920727839029e-17,-1.2072374350191595e-17)
    sum a = (5.081872422874056e-18,5.103534782280317e-17,-9.612232884648186e-17)
    sum e = 2.5920008534020837
    sum de = -1.4314856808597676e-18
Info: CFL hydro = 0.004994876398541265 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004994876398541265 cfl multiplier : 0.4452357021128133        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2139e+04 |  512 |      1 | 4.218e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 799.2129382879643 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.100956885597992, dt = 0.004994876398541265 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (1.2%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 378.98 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.89651547275505e-19,-4.21903722895578e-17,-1.3202329854355987e-17)
    sum a = (1.183350292754959e-16,8.149145420965897e-17,4.768060946069852e-17)
    sum e = 2.5920008927299807
    sum de = -1.3637230450794235e-19
Info: CFL hydro = 0.00707410905212547 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00707410905212547 cfl multiplier : 0.6301571347418755         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6579e+04 |  512 |      1 | 3.088e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 582.2423046883954 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.1059517619965336, dt = 0.00707410905212547 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (1.2%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 370.64 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3810844748960456e-19,-4.145707215019723e-17,-1.250269419245109e-17)
    sum a = (-5.2692225582795515e-17,6.169674146572213e-17,8.617520759479636e-17)
    sum e = 2.592000940082837
    sum de = -2.5093351062408648e-19
Info: CFL hydro = 0.008467350527168883 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008467350527168883 cfl multiplier : 0.753438089827917         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6312e+04 |  512 |      1 | 3.139e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 811.3759804772336 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.113025871048659, dt = 0.008467350527168883 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (1.2%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 378.52 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.977017484062099e-19,-4.0989428648149915e-17,-1.1571798207155037e-17)
    sum a = (-1.1714067216228585e-16,-1.5079344023449793e-16,3.152166028197456e-17)
    sum e = 2.59200098781086
    sum de = -9.681586587116653e-19
Info: CFL hydro = 0.009405448677754329 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009405448677754329 cfl multiplier : 0.8356253932186114        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6351e+04 |  512 |      1 | 3.131e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 973.4863254040624 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.121493221575828, dt = 0.009405448677754329 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.99 us    (0.9%)
   patch tree reduce : 1302.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 420.19 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.189654707551725e-18,-4.32888588256658e-17,-1.1602535338745001e-17)
    sum a = (8.362841669162791e-17,8.346448532314809e-17,-2.0836847872129916e-17)
    sum e = 2.592001032476978
    sum de = -1.1299419516372367e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011399165951698773
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2470493387928273e-18,-4.211572496998217e-17,-1.1825013624539027e-17)
    sum a = (-2.5292268279741848e-17,1.0659051766226391e-16,3.624054181750047e-18)
    sum e = 2.592000855722147
    sum de = -8.300922883092143e-19
Info: CFL hydro = 0.005020194980343583 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005020194980343583 cfl multiplier : 0.44520846440620376       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2568e+04 |  512 |      1 | 4.074e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 831.11836887253 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 7.130898670253583, dt = 0.005020194980343583 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.6%)
   patch tree reduce : 1913.00 ns (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 821.00 ns  (0.2%)
   LB compute        : 372.96 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (73.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.946685000697723e-18,-4.146292684192865e-17,-1.1642054507932099e-17)
    sum a = (-3.461293751616523e-17,1.2077058103576733e-16,4.9319923145496604e-17)
    sum e = 2.592000905420523
    sum de = -9.215718466126788e-19
Info: CFL hydro = 0.0071108424875922045 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0071108424875922045 cfl multiplier : 0.6301389762708025       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6727e+04 |  512 |      1 | 3.061e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 590.430494708642 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 7.1359188652339265, dt = 0.0071108424875922045 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1904.00 ns (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 390.24 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2160008203431225e-18,-4.0687912023981696e-17,-1.1238080778464e-17)
    sum a = (-1.5964573413240757e-16,-4.6615055565579764e-17,-8.146218075100187e-17)
    sum e = 2.592000962259814
    sum de = 8.707498697774207e-19
Info: CFL hydro = 0.008512523983402636 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008512523983402636 cfl multiplier : 0.753425984180535         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5899e+04 |  512 |      1 | 3.220e-02 | 0.0% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 794.9319483149238 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.143029707721519, dt = 0.008512523983402636 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.1%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 423.02 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.25 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.1246303247866044e-18,-4.157087272072674e-17,-1.2341690169836993e-17)
    sum a = (6.41674213763821e-17,8.68602065273727e-17,7.58650954557627e-17)
    sum e = 2.5920010161405744
    sum de = 3.8624702394796095e-19
Info: CFL hydro = 0.009443810970701523 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009443810970701523 cfl multiplier : 0.8356173227870233        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6164e+04 |  512 |      1 | 3.167e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 967.5032330602322 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.151542231704922, dt = 0.009443810970701523 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.2%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 383.71 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3521224030986778e-18,-4.024478504355972e-17,-1.0924854770832936e-17)
    sum a = (-7.533817319993474e-17,-4.0748654450695196e-17,-9.94185202912723e-17)
    sum e = 2.592001061258138
    sum de = -1.0977546996415732e-18
Info: CFL hydro = 0.010060213545653597 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010060213545653597 cfl multiplier : 0.8904115485246823        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6098e+04 |  512 |      1 | 3.180e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1068.9447541892707 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.160986042675623, dt = 0.010060213545653597 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.2%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 393.47 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (72.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.984117723232483e-18,-4.1129941249704036e-17,-1.2766155320365069e-17)
    sum a = (-1.649149566906871e-16,2.9226621123257244e-17,-1.4579938818759519e-16)
    sum e = 2.592001095419663
    sum de = -2.371692252312041e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010148300652761445
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.332471881252076e-18,-4.094222519606533e-17,-1.2968142185099118e-17)
    sum a = (1.8161253750870187e-16,-6.779733024986356e-17,5.3195729071697784e-17)
    sum e = 2.5920008584342717
    sum de = 4.472333961502706e-19
Info: CFL hydro = 0.005236038713112129 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005236038713112129 cfl multiplier : 0.46347051617489415       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2847e+04 |  512 |      1 | 3.985e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 908.7290374454593 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.171046256221277, dt = 0.005236038713112129 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.37 us   (2.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 419.03 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.610040226140974e-18,-4.1736633680372613e-17,-1.1721092846306292e-17)
    sum a = (-1.9554670382948556e-17,-5.3699232560600053e-17,-2.1462128949045755e-16)
    sum e = 2.592000921958342
    sum de = -7.860465750519907e-19
Info: CFL hydro = 0.007256246686629964 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007256246686629964 cfl multiplier : 0.6423136774499295        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6267e+04 |  512 |      1 | 3.148e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 598.878203556708 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 7.1762822949343885, dt = 0.007256246686629964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (1.1%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 379.58 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3360220008372678e-18,-4.198033522369304e-17,-1.3967830798239378e-17)
    sum a = (1.6557068216460634e-17,-3.828968392349807e-17,4.9741460950158966e-17)
    sum e = 2.5920009812975047
    sum de = -9.351243737687476e-19
Info: CFL hydro = 0.008603383751725481 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008603383751725481 cfl multiplier : 0.7615424516332864        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6585e+04 |  512 |      1 | 3.087e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 846.1966152660212 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.183538541621019, dt = 0.008603383751725481 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.51 us    (1.1%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 401.78 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0696335270575793e-18,-4.2342960192807976e-17,-1.259929660601955e-17)
    sum a = (-1.3521996022891613e-16,-3.135772891349475e-17,3.9987544525610374e-17)
    sum e = 2.5920010299273035
    sum de = -1.212951180468158e-18
Info: CFL hydro = 0.009502593392365854 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009502593392365854 cfl multiplier : 0.8410283010888575        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6334e+04 |  512 |      1 | 3.134e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 988.1060606326341 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.192141925372744, dt = 0.009502593392365854 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.10 us    (1.0%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.2%)
   LB compute        : 389.83 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (72.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.030955257083857e-18,-4.268582557732936e-17,-1.2256797139731378e-17)
    sum a = (-2.458970527197124e-16,-1.1709383462843449e-19,-3.8699512344697595e-17)
    sum e = 2.5920010628863754
    sum de = -9.351243737687476e-19
Info: CFL hydro = 0.010103992924071603 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010103992924071603 cfl multiplier : 0.8940188673925716        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6280e+04 |  512 |      1 | 3.145e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1087.7274180581985 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.20164451876511, dt = 0.010103992924071603 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.90 us    (1.0%)
   patch tree reduce : 952.00 ns  (0.2%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 631.00 ns  (0.2%)
   LB compute        : 371.94 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.85 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.060758228094599e-18,-4.2428950977613236e-17,-1.3091090711458975e-17)
    sum a = (1.4121516456189197e-17,-2.1170565300820955e-17,-1.952539692429145e-17)
    sum e = 2.592001080083204
    sum de = -1.260385025514399e-18
Info: CFL hydro = 0.0104911062511202 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.0104911062511202 cfl multiplier : 0.9293459115950476          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6240e+04 |  512 |      1 | 3.153e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1153.7755874288214 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.211748511689182, dt = 0.0104911062511202 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.31 us    (1.1%)
   patch tree reduce : 1122.00 ns (0.3%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 712.00 ns  (0.2%)
   LB compute        : 373.66 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.640995483224831e-18,-4.270704883485577e-17,-1.3214039237818831e-17)
    sum a = (3.810233378809258e-17,8.23872220445665e-17,-4.660041883625121e-17)
    sum e = 2.592001082742631
    sum de = 1.2332799712022613e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.0106790273960934
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.219457678562467e-18,-4.2051323360936534e-17,-1.331649634311871e-17)
    sum a = (1.36203548439795e-16,4.5385570301981204e-17,3.209249272578818e-17)
    sum e = 2.592000853995012
    sum de = 7.318364664277155e-19
Info: CFL hydro = 0.005367396025220269 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005367396025220269 cfl multiplier : 0.4764486371983492        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2353e+04 |  512 |      1 | 4.145e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 911.1991856342346 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.222239617940302, dt = 0.005367396025220269 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.51 us    (1.1%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 383.65 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 19.97 us   (93.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.025100565352435e-18,-4.2396750173090414e-17,-1.270468105718514e-17)
    sum a = (1.0796051552741658e-17,-1.3325278380715843e-16,9.64267728165158e-18)
    sum e = 2.592000913912105
    sum de = -6.2341624917916505e-19
Info: CFL hydro = 0.007325749218473643 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007325749218473643 cfl multiplier : 0.6509657581322328        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6587e+04 |  512 |      1 | 3.087e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 625.9879981749347 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.227607013965522, dt = 0.007325749218473643 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.73 us    (0.9%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1243.00 ns (0.3%)
   LB compute        : 406.75 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.490548558000462e-18,-4.353548771485194e-17,-1.2710535748916562e-17)
    sum a = (1.0332359967613058e-16,4.9296504378570916e-17,-1.2107502500580125e-16)
    sum e = 2.592000957302946
    sum de = 1.2197274440461925e-18
Info: CFL hydro = 0.008623648306796515 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008623648306796515 cfl multiplier : 0.7673105054214885        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6799e+04 |  512 |      1 | 3.048e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 865.287702080944 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 7.234932763183996, dt = 0.008623648306796515 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.79 us    (0.9%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 383.57 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0005295123536336e-18,-4.269241210552721e-17,-1.422397356148908e-17)
    sum a = (-1.2423655854076897e-16,-7.412039731979902e-17,-8.62425365497077e-17)
    sum e = 2.5920009858010973
    sum de = -1.5856456772600502e-18
Info: CFL hydro = 0.00948207422021949 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00948207422021949 cfl multiplier : 0.8448736702809923         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6402e+04 |  512 |      1 | 3.122e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 994.5123753218561 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.243556411490792, dt = 0.00948207422021949 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.14 us    (1.1%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 373.05 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.239949099622443e-18,-4.395117082778288e-17,-1.4882626381274022e-17)
    sum a = (2.067877119538153e-17,-9.503335618443743e-17,4.517626507258288e-17)
    sum e = 2.592000998214596
    sum de = -9.351243737687476e-19
Info: CFL hydro = 0.010048973045306336 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010048973045306336 cfl multiplier : 0.8965824468539948        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6495e+04 |  512 |      1 | 3.104e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1099.7539076261942 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.253038485711012, dt = 0.010048973045306336 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.25 us    (1.1%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 388.15 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (75.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.426146948954823e-18,-4.485572070028754e-17,-1.3805363102692424e-17)
    sum a = (-4.250506197012172e-18,-4.208352416545935e-17,-8.526333935762742e-17)
    sum e = 2.5920009981405974
    sum de = -5.421010862427522e-20
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01117698869275853
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.519822016657571e-18,-4.4562986113716453e-17,-1.4516708148060165e-17)
    sum a = (5.488188029034724e-17,-5.1989662575024907e-17,4.8078728498435195e-17)
    sum e = 2.5920008508529193
    sum de = -1.0164395367051604e-18
Info: CFL hydro = 0.005212190333589202 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005212190333589202 cfl multiplier : 0.4655274822846649        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2103e+04 |  512 |      1 | 4.230e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 855.1510247059374 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.263087458756318, dt = 0.005212190333589202 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 384.79 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.828968392349808e-18,-4.495525045972171e-17,-1.3495064440927074e-17)
    sum a = (-4.547924536968395e-17,4.3113949910189576e-17,6.504928431842749e-17)
    sum e = 2.5920008905387153
    sum de = -1.0706496453294356e-18
Info: CFL hydro = 0.007203049091589358 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007203049091589358 cfl multiplier : 0.6436849881897766        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6471e+04 |  512 |      1 | 3.109e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 603.6267820367731 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.268299649089907, dt = 0.007203049091589358 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.1%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 406.96 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.467129791074775e-18,-4.415315769251693e-17,-1.30442531776076e-17)
    sum a = (-8.033807993856889e-17,6.229392002232714e-18,1.038022207251743e-16)
    sum e = 2.592000918889698
    sum de = -1.5720931501039814e-18
Info: CFL hydro = 0.008526999761534612 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008526999761534612 cfl multiplier : 0.7624566587931844        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5825e+04 |  512 |      1 | 3.235e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 801.4682397555767 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.275502698181496, dt = 0.008526999761534612 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.2%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 433.29 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.25 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.304350708668082e-18,-4.4437110241490886e-17,-1.2046028237400197e-17)
    sum a = (3.0725422206501207e-17,-3.957771610441085e-18,-2.7934380882662505e-17)
    sum e = 2.592000937231655
    sum de = 4.607859233063394e-19
Info: CFL hydro = 0.009407636793925176 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009407636793925176 cfl multiplier : 0.8416377725287895        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5652e+04 |  512 |      1 | 3.271e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 938.4323680708782 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.284029697943031, dt = 0.009407636793925176 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 391.33 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.37930941510345e-18,-4.4601041609970695e-17,-1.2877394463262081e-17)
    sum a = (3.665622493043141e-17,2.1638940639334692e-17,-4.861918972889206e-17)
    sum e = 2.592000946502019
    sum de = -5.285485590866834e-19
Info: CFL hydro = 0.009994397010865325 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009994397010865325 cfl multiplier : 0.8944251816858596        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6067e+04 |  512 |      1 | 3.187e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1062.7829400927515 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.293437334736956, dt = 0.009994397010865325 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 389.64 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.969480993903929e-18,-4.406826466241131e-17,-1.3407244064955747e-17)
    sum a = (-6.782660370852068e-17,-1.3699978651526834e-17,-8.318492379297271e-17)
    sum e = 2.5920009507968405
    sum de = 4.0657581468206416e-20
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01093686871033549
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.5900783174346314e-18,-4.451322123399937e-17,-1.365314111767546e-17)
    sum a = (1.0312454015726224e-16,-1.2954090924943707e-16,3.299557892535998e-17)
    sum e = 2.59200085137787
    sum de = 5.89534931288993e-19
Info: CFL hydro = 0.005194186352365186 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005194186352365186 cfl multiplier : 0.46480839389528655       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2411e+04 |  512 |      1 | 4.125e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 872.143479945481 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 7.303431731747821, dt = 0.005194186352365186 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.2%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 395.23 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0795678507278268e-18,-4.5789544031449303e-17,-1.2842266312873551e-17)
    sum a = (1.4033988814804443e-16,5.491700844073577e-18,1.558811673491034e-17)
    sum e = 2.5920008779055284
    sum de = -1.2265037076242269e-18
Info: CFL hydro = 0.007188089465213584 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007188089465213584 cfl multiplier : 0.643205595930191         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6131e+04 |  512 |      1 | 3.174e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 589.1264310659682 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.308625918100186, dt = 0.007188089465213584 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 379.98 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8735013540549518e-18,-4.5382642956115495e-17,-1.2713463094782273e-17)
    sum a = (-1.3267728590587135e-16,7.073638549903727e-17,-1.734642702914957e-16)
    sum e = 2.592000901023328
    sum de = 0
Info: CFL hydro = 0.008518953216645928 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008518953216645928 cfl multiplier : 0.7621370639534607        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5789e+04 |  512 |      1 | 3.243e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 797.9843066016862 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.3158140075653995, dt = 0.008518953216645928 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.2%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 398.83 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.60 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.1275576706523154e-18,-4.438441801590809e-17,-1.4888481073005444e-17)
    sum a = (4.9094517513836867e-17,5.731743205061867e-17,1.9753729901816896e-17)
    sum e = 2.592000921410614
    sum de = 2.236166980751353e-19
Info: CFL hydro = 0.009409355677901568 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009409355677901568 cfl multiplier : 0.8414247093023072        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5775e+04 |  512 |      1 | 3.246e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 944.9013878288494 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.324332960782045, dt = 0.009409355677901568 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.5%)
   patch tree reduce : 1704.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 378.28 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6814488129911495e-18,-4.377553007584023e-17,-1.3931238974917992e-17)
    sum a = (1.0996282009956281e-16,-3.9203015833599864e-17,3.951916918709664e-18)
    sum e = 2.5920009402755944
    sum de = 1.043544591017298e-18
Info: CFL hydro = 0.010007705441232514 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010007705441232514 cfl multiplier : 0.8942831395348714        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5893e+04 |  512 |      1 | 3.221e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1051.5025179754377 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.333742316459946, dt = 0.010007705441232514 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 412.88 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6158949178723958e-18,-4.4984523918378815e-17,-1.4004422621560764e-17)
    sum a = (-1.77490834529781e-16,1.1709383462843448e-17,6.64595331892337e-17)
    sum e = 2.5920009599826597
    sum de = -1.6059744679941534e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01105565362722654
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7224316551111016e-18,-4.443125554975946e-17,-1.3620940313152641e-17)
    sum a = (1.4784267560186137e-16,-4.10999359545805e-18,3.705141662230238e-17)
    sum e = 2.592000856524434
    sum de = -3.5914196963582334e-19
Info: CFL hydro = 0.005207039110053758 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005207039110053758 cfl multiplier : 0.4647610465116238        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1847e+04 |  512 |      1 | 4.322e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 833.657312823561 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 7.343750021901179, dt = 0.005207039110053758 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.2%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 393.32 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.7328954911349825e-19,-4.4723990136330546e-17,-1.3623867659018352e-17)
    sum a = (6.721186107672139e-17,-4.656529068586268e-17,-9.667559721510121e-17)
    sum e = 2.5920008836805364
    sum de = -1.866860615748478e-18
Info: CFL hydro = 0.007210301230634687 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007210301230634687 cfl multiplier : 0.6431740310077493        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5833e+04 |  512 |      1 | 3.234e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 579.6723890437239 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.348957061011232, dt = 0.007210301230634687 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.2%)
   patch tree reduce : 1964.00 ns (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 402.55 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.2786273695961654e-19,-4.493475903866173e-17,-1.4622092599225757e-17)
    sum a = (-5.48701709068844e-17,1.757007625328988e-16,-8.577123386532826e-17)
    sum e = 2.5920009151985206
    sum de = -2.2158381900172497e-18
Info: CFL hydro = 0.008551942855660606 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008551942855660606 cfl multiplier : 0.7621160206718329        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6219e+04 |  512 |      1 | 3.157e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 822.2712679290119 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.356167362241867, dt = 0.008551942855660606 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1704.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 393.79 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.660241356845845e-19,-4.2654356609272967e-17,-1.5263181343816433e-17)
    sum a = (-3.440216861383405e-17,4.7518141765151564e-17,1.5983308426781305e-17)
    sum e = 2.5920009485453863
    sum de = -6.674619624363887e-19
Info: CFL hydro = 0.00945408128047154 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00945408128047154 cfl multiplier : 0.8414106804478886         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5539e+04 |  512 |      1 | 3.295e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 934.367301938972 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 7.364719305097528, dt = 0.00945408128047154 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1684.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 406.10 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 us    (73.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2119211884042968e-18,-4.288561693266413e-17,-1.477724193010843e-17)
    sum a = (-1.3571175433435556e-16,1.6454025641987613e-16,3.2786273695961652e-18)
    sum e = 2.5920009828893726
    sum de = 1.74319380544935e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010423181552256928
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8793560457863733e-18,-4.2437733015210364e-17,-1.479626967823555e-17)
    sum a = (-4.5081126331947276e-17,-5.172034675537951e-17,9.947121251685508e-18)
    sum e = 2.5920008593998882
    sum de = -3.2356658585114273e-19
Info: CFL hydro = 0.005032652053845918 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005032652053845918 cfl multiplier : 0.44713689348262947       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1535e+04 |  512 |      1 | 4.439e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 766.7719642770373 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.374173386378, dt = 0.005032652053845918 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1694.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 408.14 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6217496096038176e-18,-4.377553007584023e-17,-1.4752359490249888e-17)
    sum a = (-9.00685775961918e-17,-3.4121143410725806e-17,-2.278646021869335e-17)
    sum e = 2.592000893683375
    sum de = 3.2864878353466853e-19
Info: CFL hydro = 0.007113405632928124 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007113405632928124 cfl multiplier : 0.6314245956550862        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6389e+04 |  512 |      1 | 3.124e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 579.9515365641018 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.379206038431845, dt = 0.007113405632928124 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.2%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 397.51 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4238423768085935e-18,-4.383114964728874e-17,-1.507875855427665e-17)
    sum a = (7.800791262946305e-17,-7.113450453677395e-17,-3.386939166627467e-17)
    sum e = 2.592000936540033
    sum de = 4.342102645862357e-19
Info: CFL hydro = 0.008509291076802018 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008509291076802018 cfl multiplier : 0.7542830637700574        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5452e+04 |  512 |      1 | 3.313e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 772.8581856626619 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.386319444064774, dt = 0.008509291076802018 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.2%)
   patch tree reduce : 1594.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 392.48 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0977546996415732e-18,-4.4463456354282283e-17,-1.5384666197243433e-17)
    sum a = (-1.796219423200185e-17,-4.618180837745456e-17,-4.1217029789208933e-17)
    sum e = 2.592000981059981
    sum de = 2.913793338554793e-19
Info: CFL hydro = 0.009432308807975468 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009432308807975468 cfl multiplier : 0.8361887091800382        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5943e+04 |  512 |      1 | 3.211e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 953.8728398165441 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.394828735141576, dt = 0.009432308807975468 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1953.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 410.34 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.25 us    (74.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6715144893209022e-18,-4.4887921504810354e-17,-1.576083014098728e-17)
    sum a = (7.744586222324657e-17,-1.0778487477547394e-16,4.9103299551433995e-17)
    sum e = 2.592001023361843
    sum de = -4.743384504624082e-20
Info: CFL hydro = 0.010045045745989488 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010045045745989488 cfl multiplier : 0.8907924727866922        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5976e+04 |  512 |      1 | 3.205e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1059.5424472632124 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.404261043949551, dt = 0.010045045745989488 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 413.53 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.71 us    (79.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.917941054394248e-19,-4.633403036247152e-17,-1.4933854933923962e-17)
    sum a = (-9.175472881484126e-17,7.205954583033857e-17,1.3699978651526833e-18)
    sum e = 2.592001061538184
    sum de = -1.0469327228063152e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010968206018202255
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1299555041643928e-18,-4.547924536968395e-17,-1.5109495685866614e-17)
    sum a = (-4.487035742961609e-17,-6.108785352565427e-17,9.091165320551652e-17)
    sum e = 2.5920008654135445
    sum de = 2.270048298641525e-19
Info: CFL hydro = 0.00522727340485018 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00522727340485018 cfl multiplier : 0.4635974909288974         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2285e+04 |  512 |      1 | 4.168e-02 | 0.1% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 867.6969011316926 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.41430608969554, dt = 0.00522727340485018 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (0.7%)
   patch tree reduce : 1633.00 ns (0.2%)
   gen split merge   : 772.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.1%)
   LB compute        : 693.25 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.062626549253043e-18,-4.6471615618159934e-17,-1.419762744869768e-17)
    sum a = (-4.828949740076638e-17,2.7634144972310537e-18,5.855862669768008e-17)
    sum e = 2.5920009175197647
    sum de = 2.270048298641525e-19
Info: CFL hydro = 0.007243032041249217 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007243032041249217 cfl multiplier : 0.6423983272859316        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5694e+04 |  512 |      1 | 3.262e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 576.8393765579544 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.41953336310039, dt = 0.007243032041249217 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.2%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 432.94 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6363863389323718e-18,-4.607642392628897e-17,-1.38390275801481e-17)
    sum a = (-1.301146690391164e-16,3.4987637786976223e-17,-3.4378749846908365e-17)
    sum e = 2.5920009723207467
    sum de = -6.776263578034403e-21
Info: CFL hydro = 0.008587239660397856 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008587239660397856 cfl multiplier : 0.7615988848572878        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6640e+04 |  512 |      1 | 3.077e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 847.4559500553889 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.42677639514164, dt = 0.008587239660397856 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (0.8%)
   patch tree reduce : 611.00 ns  (0.2%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 441.00 ns  (0.1%)
   LB compute        : 388.55 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.65 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0415123544735857e-18,-4.5763197918657906e-17,-1.4565009354844395e-17)
    sum a = (2.910952728862881e-17,2.927345865710862e-17,3.773934290074443e-17)
    sum e = 2.592001022616427
    sum de = -6.437450399132683e-19
Info: CFL hydro = 0.009484646985395133 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009484646985395133 cfl multiplier : 0.8410659232381917        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6902e+04 |  512 |      1 | 3.029e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1020.5094712498856 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.435363634802037, dt = 0.009484646985395133 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.50 us    (0.9%)
   patch tree reduce : 811.00 ns  (0.2%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 480.00 ns  (0.1%)
   LB compute        : 383.13 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.65 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.05 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.996449880414808e-18,-4.539727968544405e-17,-1.3910747553858016e-17)
    sum a = (6.765681764830944e-17,-9.910822162950694e-17,1.5553574053694953e-16)
    sum e = 2.592001063506351
    sum de = 2.846030702774449e-19
Info: CFL hydro = 0.010085131790029437 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010085131790029437 cfl multiplier : 0.8940439488254611        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6659e+04 |  512 |      1 | 3.073e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1110.9947064699898 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.444848281787433, dt = 0.010085131790029437 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.56 us    (0.9%)
   patch tree reduce : 711.00 ns  (0.2%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 581.00 ns  (0.1%)
   LB compute        : 403.68 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.46 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2470493387928273e-18,-4.7057084791302104e-17,-1.1716701827507725e-17)
    sum a = (-1.9601507916799932e-17,-1.1468170163508872e-16,5.713008191521318e-17)
    sum e = 2.5920010932719926
    sum de = 1.3755815063409838e-18
Info: CFL hydro = 0.010488528893173501 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010488528893173501 cfl multiplier : 0.9293626325503075        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6430e+04 |  512 |      1 | 3.116e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1165.0432436062154 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.4549334135774625, dt = 0.010488528893173501 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.53 us    (0.9%)
   patch tree reduce : 802.00 ns  (0.2%)
   gen split merge   : 582.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 631.00 ns  (0.2%)
   LB compute        : 369.85 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9027748127120604e-18,-4.839195450606626e-17,-1.1603999011677857e-17)
    sum a = (1.1381520725883831e-17,-1.5128523433993735e-17,-4.407411935414274e-17)
    sum e = 2.5920011117723702
    sum de = -9.622294280808852e-19
Info: CFL hydro = 0.010761278385042402 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010761278385042402 cfl multiplier : 0.952908421700205         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6200e+04 |  512 |      1 | 3.161e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1194.6966813953713 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.465421942470636, dt = 0.010761278385042402 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.08 us    (1.0%)
   patch tree reduce : 1332.00 ns (0.3%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 388.93 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5866214592152872e-18,-4.802018158112098e-17,-1.2609542316549537e-17)
    sum a = (1.0072411654737933e-16,-4.997564861941584e-17,5.577179343352334e-17)
    sum e = 2.592001119773119
    sum de = 9.893344823930228e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01070836123614665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0860453161787297e-18,-4.828949740076638e-17,-1.2046028237400197e-17)
    sum a = (-2.655688169372894e-17,-4.4542494692656475e-17,-5.3102054003995033e-17)
    sum e = 2.5920008671808823
    sum de = 2.358139725155972e-18
Info: CFL hydro = 0.005469134584406285 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005469134584406285 cfl multiplier : 0.48430280723340163       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2517e+04 |  512 |      1 | 4.091e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 947.0688463649303 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.476183220855678, dt = 0.005469134584406285 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.56 us    (0.9%)
   patch tree reduce : 1002.00 ns (0.2%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 662.00 ns  (0.2%)
   LB compute        : 390.13 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.87 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9788858052205426e-18,-4.8380245122603414e-17,-1.300619768135336e-17)
    sum a = (-4.545582660275826e-17,5.23643628458359e-17,2.8500639348560954e-17)
    sum e = 2.5920009320954454
    sum de = -3.3881317890172014e-20
Info: CFL hydro = 0.007405443266626029 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007405443266626029 cfl multiplier : 0.6562018714889345        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6612e+04 |  512 |      1 | 3.082e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 638.8075374690486 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.481652355440085, dt = 0.007405443266626029 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.16 us    (1.0%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 1153.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 399.51 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4062783016143284e-18,-4.7695246190027074e-17,-1.2594905587220984e-17)
    sum a = (1.3767893075611326e-16,-3.9577716104410856e-17,-5.701298808058475e-17)
    sum e = 2.5920009817917893
    sum de = 6.708500942254059e-19
Info: CFL hydro = 0.00869176508419782 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00869176508419782 cfl multiplier : 0.7708012476592897         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5224e+04 |  512 |      1 | 3.363e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 792.6961121517785 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.489057798706711, dt = 0.00869176508419782 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 403.23 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (74.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.88866759573714e-19,-4.8434401021119066e-17,-1.3328937563047982e-17)
    sum a = (-5.304350708668082e-17,1.3023176287374482e-16,3.230618897398507e-17)
    sum e = 2.5920010179704183
    sum de = 6.166399856011306e-19
Info: CFL hydro = 0.009545622773686178 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009545622773686178 cfl multiplier : 0.8472008317728598        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5686e+04 |  512 |      1 | 3.264e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 958.6121751531624 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.497749563790909, dt = 0.0022504362090911556 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.18 us    (1.0%)
   patch tree reduce : 1303.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 383.63 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3699978651526833e-18,-4.741788016925097e-17,-1.2886908337325642e-17)
    sum a = (9.088823443859084e-17,-1.374213243199307e-16,1.4098097689263512e-17)
    sum e = 2.5920008764563134
    sum de = -7.928228386300251e-19
Info: CFL hydro = 0.010118415079400705 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010118415079400705 cfl multiplier : 0.8981338878485733        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6728e+04 |  512 |      1 | 3.061e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 264.69050944118845 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 998                                                     [SPH][rank=0]
Info: time since start : 750.1683792460001 (s)                                        [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.1498141349945779 max=0.1501952696900517 delta=0.00038113469547379486
Number of particle pairs: 130816
Distance min=0.146812 max=1.993644 mean=0.806030
---------------- t = 7.5, dt = 0.010118415079400705 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.50 us   (1.5%)
   patch tree reduce : 1522.00 ns (0.2%)
   gen split merge   : 470.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.1%)
   LB compute        : 683.92 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.31 us    (76.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.3957212042246e-19,-4.909671302323615e-17,-1.2840070803474268e-17)
    sum a = (-5.585375911776324e-17,-1.0643829567724694e-16,1.6229205479501017e-17)
    sum e = 2.592001059813876
    sum de = 2.2971533529536625e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010567847835291817
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0992183725744287e-18,-4.899352408146984e-17,-1.2822506728280003e-17)
    sum a = (3.1228925695403476e-17,-6.48699843841527e-18,7.463561019216413e-17)
    sum e = 2.5920008674853614
    sum de = 4.472333961502706e-19
Info: CFL hydro = 0.005247040222307683 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005247040222307683 cfl multiplier : 0.4660446292828578        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1343e+04 |  512 |      1 | 4.514e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 806.9851098613319 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.5101184150794005, dt = 0.005247040222307683 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 416.93 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.361745339909184e-19,-4.849477752959935e-17,-1.2180686147222896e-17)
    sum a = (2.3898851647663477e-17,-1.6931768487271626e-16,5.962418059279884e-17)
    sum e = 2.5920009186186213
    sum de = -1.4704491964334654e-18
Info: CFL hydro = 0.007248841972901704 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007248841972901704 cfl multiplier : 0.6440297528552384        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5811e+04 |  512 |      1 | 3.238e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 583.3330080567493 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.515365455301708, dt = 0.007248841972901704 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.45 us    (1.1%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.2%)
   LB compute        : 385.62 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0637788353261577e-19,-5.0257314179432204e-17,-1.1710847135776303e-17)
    sum a = (1.616246199376281e-16,-1.0250394283373154e-16,-4.143950807500296e-17)
    sum e = 2.592000958048801
    sum de = 5.082197683525802e-19
Info: CFL hydro = 0.008581967151893882 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008581967151893882 cfl multiplier : 0.7626865019034922        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4564e+04 |  512 |      1 | 3.515e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 742.322423255953 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 7.52261429727461, dt = 0.008581967151893882 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 394.81 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (73.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.470991297519708e-18,-5.0844338505065535e-17,-1.2400968923617639e-17)
    sum a = (-9.715275459121209e-17,3.1193797545014944e-17,7.024459139359784e-17)
    sum e = 2.592000985210705
    sum de = -1.0977546996415732e-18
Info: CFL hydro = 0.009468605520588046 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009468605520588046 cfl multiplier : 0.8417910012689948        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6299e+04 |  512 |      1 | 3.141e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 983.487692694572 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 7.531196264426504, dt = 0.009468605520588046 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (1.0%)
   patch tree reduce : 1834.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 429.99 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.88866759573714e-19,-4.9844649891925274e-17,-1.1202952628075468e-17)
    sum a = (-6.921416564886762e-17,-7.587680483922555e-17,-5.464769262109037e-17)
    sum e = 2.5920009992318818
    sum de = -9.147955830346444e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01005590345706908
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.6006354148243604e-19,-5.0484274963583096e-17,-1.1863435039026481e-17)
    sum a = (-1.1842870434319862e-16,-1.1191828713785766e-16,-1.7681169028893606e-18)
    sum e = 2.592000867383377
    sum de = -2.358139725155972e-18
Info: CFL hydro = 0.005024747057546314 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005024747057546314 cfl multiplier : 0.447263667089665         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2101e+04 |  512 |      1 | 4.231e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 805.6669111484083 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.540664869947093, dt = 0.005024747057546314 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.2%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 383.93 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.49 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2543677034571043e-18,-5.1109263305912365e-17,-1.1685781736801154e-17)
    sum a = (4.114091879670045e-17,-1.4810028203804392e-16,-7.650911154621909e-17)
    sum e = 2.5920009043723056
    sum de = 1.4840017235895342e-18
Info: CFL hydro = 0.0070901393136833845 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0070901393136833845 cfl multiplier : 0.6315091113931101       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4994e+04 |  512 |      1 | 3.415e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 529.7343653189532 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.545689617004639, dt = 0.0070901393136833845 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (0.7%)
   patch tree reduce : 1904.00 ns (0.3%)
   gen split merge   : 741.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.1%)
   LB compute        : 727.77 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.73 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.744916261457567e-19,-5.226190574053602e-17,-1.2385966276055871e-17)
    sum a = (-5.655046743380243e-17,-4.299685607556114e-17,4.332471881252076e-17)
    sum e = 2.5920009356599714
    sum de = -2.303929616531697e-19
Info: CFL hydro = 0.008462546004492009 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008462546004492009 cfl multiplier : 0.7543394075954067        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5841e+04 |  512 |      1 | 3.232e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 789.733588629105 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 7.552779756318322, dt = 0.008462546004492009 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.1%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 400.75 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3648750098876893e-18,-5.217994005629611e-17,-1.163473614326782e-17)
    sum a = (6.67025028960877e-17,-9.484600604903192e-17,1.8243219435110093e-17)
    sum e = 2.5920009583193613
    sum de = 8.538092108323347e-19
Info: CFL hydro = 0.009373969019243223 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009373969019243223 cfl multiplier : 0.8362262717302711        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6122e+04 |  512 |      1 | 3.176e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 959.2759914809333 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.561242302322814, dt = 0.009373969019243223 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.2%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 399.44 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3831709215483822e-19,-5.3432844086820365e-17,-1.1481507883109518e-17)
    sum a = (6.704646603530873e-17,-5.159154353728823e-17,9.639164466612727e-17)
    sum e = 2.5920009723425035
    sum de = 3.5236570605778894e-19
Info: CFL hydro = 0.009979560264181597 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009979560264181597 cfl multiplier : 0.8908175144868474        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6035e+04 |  512 |      1 | 3.193e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1056.8970845873614 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.5706162713420575, dt = 0.009979560264181597 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.1%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1353.00 ns (0.3%)
   LB compute        : 419.71 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.36 us    (74.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.713026843794487e-19,-5.3634830951554415e-17,-1.0161732295465436e-17)
    sum a = (-2.0737318112695746e-17,-5.0045904920192895e-17,9.57827567260594e-17)
    sum e = 2.5920009809848334
    sum de = -4.811147140404426e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010486264072184273
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.9764879717084656e-20,-5.3634830951554415e-17,-1.02347329829916e-17)
    sum a = (-6.42786605192791e-17,-3.739977078032197e-17,7.387450026707931e-17)
    sum e = 2.5920008680148885
    sum de = 5.353248226647178e-19
Info: CFL hydro = 0.0051920639203797605 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0051920639203797605 cfl multiplier : 0.4636058381622825       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2018e+04 |  512 |      1 | 4.260e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 843.2866840544015 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.580595831606239, dt = 0.0051920639203797605 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.1%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 431.73 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.22 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.527981280535222e-19,-5.3621657895158713e-17,-9.897722290201638e-18)
    sum a = (9.465865591362643e-17,-1.8126125600481657e-17,2.0503130443438878e-17)
    sum e = 2.5920008982313063
    sum de = -1.5009423825346202e-18
Info: CFL hydro = 0.007193422002298486 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007193422002298486 cfl multiplier : 0.6424038921081884        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6098e+04 |  512 |      1 | 3.181e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 587.6838718168423 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.585787895526619, dt = 0.007193422002298486 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.2%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1223.00 ns (0.3%)
   LB compute        : 391.87 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.210675640965334e-19,-5.380754435763135e-17,-9.8940631078695e-18)
    sum a = (7.931936357730151e-17,8.187200917220138e-17,-6.643904176817373e-17)
    sum e = 2.5920009254692644
    sum de = -3.2526065174565133e-19
Info: CFL hydro = 0.00852754451804933 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00852754451804933 cfl multiplier : 0.7616025947387923         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5551e+04 |  512 |      1 | 3.292e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 786.5365174227126 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.592981317528918, dt = 0.00852754451804933 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.5%)
   patch tree reduce : 1893.00 ns (0.5%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 382.82 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.30 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2133848613371522e-18,-5.2714180676788345e-17,-1.0786537678678098e-17)
    sum a = (-1.2294852635985621e-17,4.702488398677929e-17,8.276192231537748e-17)
    sum e = 2.5920009492544036
    sum de = -7.284483346386983e-19
Info: CFL hydro = 0.009418212210723207 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009418212210723207 cfl multiplier : 0.8410683964925282        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5984e+04 |  512 |      1 | 3.203e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 958.3789686123423 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.601508862046967, dt = 0.009418212210723207 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 21.40 us   (5.0%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 396.08 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.645075115163656e-19,-5.2531221560181417e-17,-9.389461864267589e-18)
    sum a = (-1.392245693732086e-17,-1.5855676147036312e-16,4.722394350564763e-17)
    sum e = 2.592000969830884
    sum de = -1.3908280993915612e-18
Info: CFL hydro = 0.010014744645105978 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010014744645105978 cfl multiplier : 0.8940455976616853        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6214e+04 |  512 |      1 | 3.158e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1073.6988488576544 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.61092707425769, dt = 0.010014744645105978 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.2%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 396.65 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9372801893811093e-19,-5.493457251593004e-17,-9.10587523352685e-18)
    sum a = (1.138620447926897e-16,-9.865155567445605e-17,-1.4711669382716508e-16)
    sum e = 2.5920009888936786
    sum de = -6.462861387550312e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010074582441020536
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.704151544831507e-19,-5.479405991437591e-17,-1.0168135864546678e-17)
    sum a = (1.342363720180373e-16,-1.3067671944533288e-16,7.256304931924084e-17)
    sum e = 2.5920008720109573
    sum de = 1.2730905197232134e-18
Info: CFL hydro = 0.005205002568186294 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005205002568186294 cfl multiplier : 0.46468186588722843       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2336e+04 |  512 |      1 | 4.151e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 868.6369103045198 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.6209418189027955, dt = 0.005205002568186294 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.0%)
   patch tree reduce : 1834.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 449.11 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.901311139779205e-18,-5.541465723790662e-17,-8.604201335790652e-18)
    sum a = (1.0538445116559104e-18,1.148339236201057e-16,7.214151151457849e-17)
    sum e = 2.5920009028533286
    sum de = 9.571472303973594e-20
Info: CFL hydro = 0.007203283996956836 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007203283996956836 cfl multiplier : 0.643121243924819         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6804e+04 |  512 |      1 | 3.047e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 614.977852224901 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 7.626146821470982, dt = 0.007203283996956836 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.2%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 413.15 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5471022900281904e-18,-5.40358773351568e-17,-8.106552538619805e-18)
    sum a = (1.2416630223999192e-16,4.269241210552721e-17,5.9237770938525e-17)
    sum e = 2.5920009355442364
    sum de = 6.860966872759833e-20
Info: CFL hydro = 0.00853595273527817 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00853595273527817 cfl multiplier : 0.7620808292832125         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6040e+04 |  512 |      1 | 3.192e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 812.4055155934276 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.633350105467939, dt = 0.00853595273527817 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.2%)
   LB compute        : 383.49 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0824951965935378e-18,-5.404465937275393e-17,-7.623540470777513e-18)
    sum a = (-1.3428320955188867e-16,-6.612288841467695e-17,-6.82657055883773e-17)
    sum e = 2.592000967312253
    sum de = 1.1011428314305904e-18
Info: CFL hydro = 0.00942603591810587 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00942603591810587 cfl multiplier : 0.8413872195221416         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6407e+04 |  512 |      1 | 3.121e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 984.7210578286298 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.641886058203218, dt = 0.00942603591810587 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.2%)
   patch tree reduce : 1984.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 444.68 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.15 us    (77.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.640372709505349e-19,-5.51687601851869e-17,-8.804724527591845e-18)
    sum a = (4.388676921873724e-17,-3.7270967562230696e-17,-2.689352646828569e-17)
    sum e = 2.59200099677462
    sum de = 1.1689054672109345e-18
Info: CFL hydro = 0.010022387669063205 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010022387669063205 cfl multiplier : 0.8942581463480943        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6059e+04 |  512 |      1 | 3.188e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1064.3595209302957 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.651312094121324, dt = 0.010022387669063205 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.2%)
   patch tree reduce : 2.20 us    (0.5%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 418.71 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (74.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8793560457863733e-18,-5.5241943831829676e-17,-8.9408461103474e-18)
    sum a = (6.48699843841527e-18,-3.564043591502975e-17,-1.6150167141126826e-17)
    sum e = 2.5920010236780766
    sum de = -1.4026865606531214e-18
Info: CFL hydro = 0.010424156204110939 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010424156204110939 cfl multiplier : 0.9295054308987295        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6203e+04 |  512 |      1 | 3.160e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1141.7992385713267 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.661334481790387, dt = 0.010424156204110939 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.3%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 402.64 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (61.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.718352023172276e-18,-5.561371675677496e-17,-8.945968965612394e-18)
    sum a = (4.093600458610069e-17,9.480648687984482e-17,7.070198918511516e-17)
    sum e = 2.5920010478303963
    sum de = -1.3552527156068805e-20
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01039849108725382
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0725608729232902e-18,-5.4998974124975676e-17,-8.542727072610723e-18)
    sum a = (3.658011393792293e-17,-1.9676008869082274e-16,1.4431156465134765e-16)
    sum e = 2.592000879639783
    sum de = 4.1335207826009857e-19
Info: CFL hydro = 0.0053492065517023665 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0053492065517023665 cfl multiplier : 0.47650181029957644      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1970e+04 |  512 |      1 | 4.277e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 877.3247852460829 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.671758637994498, dt = 0.0053492065517023665 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.2%)
   patch tree reduce : 2.17 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1283.00 ns (0.3%)
   LB compute        : 424.12 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.201364091014568e-18,-5.753405564468128e-17,-7.475709504559114e-18)
    sum a = (1.6346299314129453e-17,-1.6219837972730745e-16,-4.664356288293608e-17)
    sum e = 2.5920009229032455
    sum de = 2.168404344971009e-19
Info: CFL hydro = 0.007311923486386582 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007311923486386582 cfl multiplier : 0.6510012068663843        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6488e+04 |  512 |      1 | 3.105e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 620.1521036283126 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.6771078445462, dt = 0.007311923486386582 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.2%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 383.94 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.265765700060207e-18,-5.873134010375703e-17,-8.232428410845372e-18)
    sum a = (7.369885951513666e-17,3.5268662990084464e-17,-4.870444867723089e-17)
    sum e = 2.5920009655865472
    sum de = -9.825582188149884e-19
Info: CFL hydro = 0.008619652429559374 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008619652429559374 cfl multiplier : 0.767334137910923         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6500e+04 |  512 |      1 | 3.103e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 848.3215412764155 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.684419768032587, dt = 0.008619652429559374 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.2%)
   patch tree reduce : 1654.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 671.00 ns  (0.2%)
   LB compute        : 408.45 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.962474016099392e-18,-5.764236744171259e-17,-8.709585786956242e-18)
    sum a = (2.3887142264200634e-18,8.915524568609001e-17,1.926193579637747e-18)
    sum e = 2.5920010043753514
    sum de = -3.4558944247975454e-19
Info: CFL hydro = 0.009490011727131882 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009490011727131882 cfl multiplier : 0.8448894252739487        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6405e+04 |  512 |      1 | 3.121e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 994.2305818656957 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.693039420462147, dt = 0.009490011727131882 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 2.26 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 395.71 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.36 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7253590009768125e-18,-5.646850174956253e-17,-8.525894833882886e-18)
    sum a = (5.2106756409653346e-17,3.891028124702878e-17,-5.765700417104114e-17)
    sum e = 2.5920010362101844
    sum de = -6.776263578034403e-19
Info: CFL hydro = 0.010071179195026857 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010071179195026857 cfl multiplier : 0.8965929501826325        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6154e+04 |  512 |      1 | 3.170e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1077.893898686831 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.702529432189278, dt = 0.010071179195026857 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.4%)
   patch tree reduce : 1944.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 424.49 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.398648550090311e-18,-5.63806813735912e-17,-9.35067453154692e-18)
    sum a = (4.2270874300864846e-17,-2.1919965842442933e-17,1.0952957291143761e-16)
    sum e = 2.592001060434073
    sum de = 1.4230153513872246e-19
Info: CFL hydro = 0.010460470042110455 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010460470042110455 cfl multiplier : 0.9310619667884218        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5626e+04 |  512 |      1 | 3.277e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1106.5240775886375 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.712600611384305, dt = 0.010460470042110455 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (1.5%)
   patch tree reduce : 1934.00 ns (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 397.62 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.913861422455422e-18,-5.693980443394198e-17,-7.390816474453499e-18)
    sum a = (3.1310891379643377e-17,2.0160045507977563e-16,7.515667775626067e-17)
    sum e = 2.592001077310188
    sum de = 7.792703114739563e-19
Info: CFL hydro = 0.010718831364663638 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010718831364663638 cfl multiplier : 0.9540413111922813        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6100e+04 |  512 |      1 | 3.180e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1184.1278204265961 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.723061081426415, dt = 0.010718831364663638 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 412.34 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (72.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.344181264714919e-18,-5.3536764865053097e-17,-6.742409365198543e-18)
    sum a = (1.4004422621560764e-17,1.6767837118791818e-17,1.1307751610067917e-16)
    sum e = 2.592001087461409
    sum de = 4.404571325722362e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010034215035673966
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.022173219486724e-18,-5.4701848519606024e-17,-6.596773908379427e-18)
    sum a = (-1.484749823088549e-17,-5.4764786455718804e-17,1.1161384316782373e-16)
    sum e = 2.59200088351841
    sum de = -4.2012834183813297e-19
Info: CFL hydro = 0.005445001439637725 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005445001439637725 cfl multiplier : 0.4846804370640938        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2484e+04 |  512 |      1 | 4.101e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 940.8976167738429 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.733779912791079, dt = 0.005445001439637725 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 382.69 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.24 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.817259008886964e-18,-5.531366380553959e-17,-6.004352288806192e-18)
    sum a = (1.6802965269180347e-16,-3.660353270484862e-17,-5.3699232560600053e-17)
    sum e = 2.5920009355709626
    sum de = 1.5449880957918438e-18
Info: CFL hydro = 0.007374462550076341 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007374462550076341 cfl multiplier : 0.6564536247093958        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5701e+04 |  512 |      1 | 3.261e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 601.10896272165 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 7.739224914230717, dt = 0.007374462550076341 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.3%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 429.40 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.36 us    (73.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.439008618490781e-18,-5.556687922292358e-17,-6.849257489296989e-18)
    sum a = (-1.5222198501696481e-18,1.1824135420779314e-16,8.440123600017557e-17)
    sum e = 2.5920009780796796
    sum de = -3.4558944247975454e-19
Info: CFL hydro = 0.008661574932632556 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008661574932632556 cfl multiplier : 0.7709690831395971        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6067e+04 |  512 |      1 | 3.187e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 833.0827160574645 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.746599376780793, dt = 0.008661574932632556 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.2%)
   patch tree reduce : 1904.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 421.87 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.60 us    (73.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.871103520542874e-18,-5.4002212857701124e-17,-5.5861077482427526e-18)
    sum a = (1.1522033327437953e-16,-4.2411386902418967e-17,-1.9179970112137567e-17)
    sum e = 2.592001011812248
    sum de = 5.421010862427522e-19
Info: CFL hydro = 0.009521765902428462 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009521765902428462 cfl multiplier : 0.8473127220930646        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5709e+04 |  512 |      1 | 3.259e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 956.7298894050386 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.755260951713425, dt = 0.009521765902428462 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.4%)
   patch tree reduce : 1894.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 406.11 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (77.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.680203265552187e-18,-5.49257904783329e-17,-6.194263851844184e-18)
    sum a = (1.1536084587593366e-16,-2.2716203917916287e-18,5.0326930123301136e-17)
    sum e = 2.5920010348867737
    sum de = -1.0367683274392636e-18
Info: CFL hydro = 0.010098719610643066 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010098719610643066 cfl multiplier : 0.8982084813953763        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5045e+04 |  512 |      1 | 3.403e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1007.2917029638411 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.764782717615853, dt = 0.010098719610643066 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.3%)
   patch tree reduce : 1993.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 454.16 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.63 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.722338393745254e-18,-5.489798069260865e-17,-5.39962666864114e-18)
    sum a = (5.4214445432965166e-17,-7.353492814665685e-18,7.65676584635333e-17)
    sum e = 2.5920010487235094
    sum de = 6.640738306473715e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010242625838606165
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.271527130425781e-18,-5.496823699338571e-17,-5.286535064688482e-18)
    sum a = (-7.896808207341621e-17,-1.331122712056043e-16,-6.294964549624637e-17)
    sum e = 2.5920008831394363
    sum de = -1.2197274440461925e-19
Info: CFL hydro = 0.005244648323990586 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005244648323990586 cfl multiplier : 0.4660694937984588        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1581e+04 |  512 |      1 | 4.421e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 822.334658863488 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 7.7748814372264965, dt = 0.005244648323990586 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 2.22 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 417.77 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.32 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.188409160112762e-18,-5.620796796751426e-17,-6.3205056423029646e-18)
    sum a = (-7.325390294354861e-17,5.318401968823494e-17,6.712989539248149e-17)
    sum e = 2.5920009275005698
    sum de = -1.2400562347802957e-18
Info: CFL hydro = 0.007250708658595876 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007250708658595876 cfl multiplier : 0.6440463291989725        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5883e+04 |  512 |      1 | 3.224e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 585.698268555424 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 7.780126085550487, dt = 0.007250708658595876 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.2%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 418.46 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (73.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.971785566050158e-18,-5.52214524107697e-17,-5.42601852121169e-18)
    sum a = (-6.546716294075771e-17,-9.404976797355858e-17,2.1545265571631944e-18)
    sum e = 2.5920009655074696
    sum de = 1.565316886525947e-18
Info: CFL hydro = 0.008587236358488499 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008587236358488499 cfl multiplier : 0.762697552799315         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5477e+04 |  512 |      1 | 3.308e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 789.0384783089177 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.787376794209083, dt = 0.008587236358488499 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.2%)
   patch tree reduce : 2.14 us    (0.5%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 426.97 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.74 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.345333550788034e-18,-5.663096944510948e-17,-5.568177754815273e-18)
    sum a = (9.911993101296979e-17,-8.924892075379276e-17,-5.070163039411213e-17)
    sum e = 2.5920009955418166
    sum de = 2.168404344971009e-19
Info: CFL hydro = 0.009473044435064623 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009473044435064623 cfl multiplier : 0.8417983685328766        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5944e+04 |  512 |      1 | 3.211e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 962.7064110448345 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.795964030567571, dt = 0.009473044435064623 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.4%)
   patch tree reduce : 1914.00 ns (0.5%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 393.69 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (73.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.885117476151947e-18,-5.753259197174843e-17,-6.378686641383968e-18)
    sum a = (6.333605515052021e-17,-8.807798240750841e-17,4.641599604671143e-17)
    sum e = 2.5920010163505345
    sum de = 1.3552527156068805e-19
Info: CFL hydro = 0.01006307756512671 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01006307756512671 cfl multiplier : 0.8945322456885844         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5513e+04 |  512 |      1 | 3.300e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1033.2712949556753 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.805437075002636, dt = 0.01006307756512671 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (1.6%)
   patch tree reduce : 2.11 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 410.27 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.99 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.423749115442745e-18,-5.823003212425404e-17,-5.502678391069993e-18)
    sum a = (3.6299088734814687e-19,1.468825061579082e-16,-8.243405957841787e-17)
    sum e = 2.592001030157353
    sum de = 5.624298769768554e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010355322403155615
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.019775385974646e-18,-5.718167638609634e-17,-6.084488381880027e-18)
    sum a = (8.859319527987353e-17,1.7016076048204097e-16,-5.811367012609203e-17)
    sum e = 2.592000883918861
    sum de = -8.809142651444724e-19
Info: CFL hydro = 0.005229353730761864 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005229353730761864 cfl multiplier : 0.4648440818961948        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1734e+04 |  512 |      1 | 4.363e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 830.2527716064154 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.815500152567762, dt = 0.005229353730761864 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (1.5%)
   patch tree reduce : 1913.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.2%)
   LB compute        : 412.97 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.003363596853496e-18,-5.608886158260314e-17,-6.2981846300769194e-18)
    sum a = (-7.463561019216413e-17,9.849933368943908e-17,-4.373454723372028e-17)
    sum e = 2.592000923030195
    sum de = 8.131516293641283e-19
Info: CFL hydro = 0.007236247453583858 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007236247453583858 cfl multiplier : 0.6432293879307965        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5856e+04 |  512 |      1 | 3.229e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 582.9927971220699 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.820729506298524, dt = 0.007236247453583858 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.3%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 421.20 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 us    (72.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.154433295797347e-18,-5.567409326525524e-17,-6.606287782442987e-18)
    sum a = (1.5836941133495763e-17,-1.2088767487039575e-16,9.395609290585582e-17)
    sum e = 2.5920009582032972
    sum de = 7.148958074826295e-19
Info: CFL hydro = 0.008575379940399312 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008575379940399312 cfl multiplier : 0.7621529252871978        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5983e+04 |  512 |      1 | 3.203e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 813.1946329198361 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.827965753752108, dt = 0.008575379940399312 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.25 us    (1.7%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 392.38 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.482296032756963e-18,-5.739253676798582e-17,-5.316791928597353e-18)
    sum a = (-9.305886139801545e-17,1.426202905774332e-16,-3.107670371038651e-17)
    sum e = 2.5920009879208945
    sum de = 3.9979955110402976e-19
Info: CFL hydro = 0.009470694138285614 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009470694138285614 cfl multiplier : 0.8414352835247986        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5587e+04 |  512 |      1 | 3.285e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 939.855470376746 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 7.836541133692507, dt = 0.009470694138285614 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.5%)
   patch tree reduce : 1934.00 ns (0.5%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 401.77 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.98 us    (74.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.1649903931870755e-18,-5.505953359257257e-17,-6.1005887841414364e-18)
    sum a = (-2.580748115210696e-17,-1.3540731036432164e-16,4.800847219765814e-18)
    sum e = 2.59200101138044
    sum de = -2.1006417091906648e-19
Info: CFL hydro = 0.010068077934584968 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010068077934584968 cfl multiplier : 0.8942901890165323        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5733e+04 |  512 |      1 | 3.254e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.6562268392424 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.846011827830793, dt = 0.010068077934584968 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1874.00 ns (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 392.65 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.328921761666884e-18,-5.765517457987507e-17,-5.878110498347411e-18)
    sum a = (1.1550135847748776e-16,-8.940114273880973e-17,-5.845324224651449e-17)
    sum e = 2.5920010300190905
    sum de = 8.588914085158605e-19
Info: CFL hydro = 0.01046206372992073 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01046206372992073 cfl multiplier : 0.9295267926776883         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5575e+04 |  512 |      1 | 3.287e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1102.5451584551408 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.856079905765378, dt = 0.01046206372992073 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.2%)
   patch tree reduce : 1933.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.2%)
   LB compute        : 458.46 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 8.94 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.26 us    (74.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.149730890139039e-18,-5.839469532920028e-17,-6.77534200618779e-18)
    sum a = (3.5245244223158776e-17,-6.490511253454123e-17,4.55729204373867e-17)
    sum e = 2.5920010453716786
    sum de = 6.56344655003676e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010222308927453466
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.763321235865206e-18,-5.835883534234532e-17,-6.245492404494124e-18)
    sum a = (1.0943589784373486e-16,-3.519840668930741e-17,-4.6404286663248586e-17)
    sum e = 2.5920008879749283
    sum de = 1.42777991171553e-18
Info: CFL hydro = 0.00536287613162366 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00536287613162366 cfl multiplier : 0.4765089308925628         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1607e+04 |  512 |      1 | 4.411e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 853.821488886803 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 7.866541969495298, dt = 0.00536287613162366 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.4%)
   patch tree reduce : 2.21 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 389.78 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.20 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.776182905401164e-18,-5.831565699082608e-17,-6.984647235586116e-18)
    sum a = (2.1521846804706256e-17,5.2352653462373055e-17,-1.408638830580067e-17)
    sum e = 2.5920009286061516
    sum de = -1.4247094172817332e-18
Info: CFL hydro = 0.007326556374574519 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007326556374574519 cfl multiplier : 0.6510059539283751        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6105e+04 |  512 |      1 | 3.179e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 607.297587373084 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 7.871904845626922, dt = 0.007326556374574519 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (1.5%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 411.33 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.03 us    (74.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.407337326321595e-18,-5.766798171803755e-17,-6.984647235586116e-18)
    sum a = (1.6498521299146418e-17,-5.56546995988949e-17,-4.0163185277553026e-17)
    sum e = 2.592000966336175
    sum de = -1.4568966692773966e-18
Info: CFL hydro = 0.008636045794125885 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008636045794125885 cfl multiplier : 0.7673373026189166        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5469e+04 |  512 |      1 | 3.310e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 796.8939445411434 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.879231402001497, dt = 0.008636045794125885 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.5%)
   patch tree reduce : 1883.00 ns (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 391.70 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.06 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.76447352193832e-18,-5.853593976722082e-17,-7.447167882368433e-18)
    sum a = (2.441406452002859e-17,6.088879400678593e-19,-8.378063867664487e-17)
    sum e = 2.59200099992131
    sum de = 7.013432803265607e-19
Info: CFL hydro = 0.009510136758642542 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009510136758642542 cfl multiplier : 0.8448915350792777        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5838e+04 |  512 |      1 | 3.233e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 961.7280642090636 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.887867447795623, dt = 0.009510136758642542 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.4%)
   patch tree reduce : 1893.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.3%)
   LB compute        : 423.07 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.54 us    (73.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.016225266389455e-18,-5.812537950955487e-17,-8.419046709784439e-18)
    sum a = (1.1423674506350067e-16,7.644470993717345e-17,-6.655613560280215e-17)
    sum e = 2.592001027676632
    sum de = -5.421010862427522e-20
Info: CFL hydro = 0.01009473872989539 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01009473872989539 cfl multiplier : 0.8965943567195186         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5445e+04 |  512 |      1 | 3.315e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1032.8054092424484 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.897377584554265, dt = 0.01009473872989539 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.2%)
   patch tree reduce : 2.03 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 461.50 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.87 us    (77.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0556009191753368e-17,-5.718716515959454e-17,-9.035253014516575e-18)
    sum a = (-4.6134970843603184e-18,9.808950526823956e-17,-7.51391136810664e-17)
    sum e = 2.5920010498102584
    sum de = -4.87890977618477e-19
Info: CFL hydro = 0.01048295484203633 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01048295484203633 cfl multiplier : 0.9310629044796791         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5586e+04 |  512 |      1 | 3.285e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1106.2985006385506 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.907472323284161, dt = 0.01048295484203633 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.3%)
   patch tree reduce : 1883.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.2%)
   LB compute        : 411.05 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.25 us    (74.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.794899266668544e-18,-5.600159008398165e-17,-9.868082913311315e-18)
    sum a = (-1.3629722350749774e-17,-7.114035922850537e-17,2.634611279139776e-18)
    sum e = 2.592001066766898
    sum de = 6.640738306473715e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010559657369557635
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.84759149225134e-18,-5.697054156553194e-17,-9.461181837977505e-18)
    sum a = (-8.182517163835001e-17,-1.752367782131836e-16,-9.974052833650048e-17)
    sum e = 2.5920008920860234
    sum de = 6.776263578034403e-19
Info: CFL hydro = 0.005370677640642876 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005370677640642876 cfl multiplier : 0.477020968159893         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2044e+04 |  512 |      1 | 4.251e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 887.744457726531 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 7.917955278126197, dt = 0.005370677640642876 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (1.5%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 423.20 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.93 us    (74.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.115755025823625e-18,-5.827686965810541e-17,-1.056186388348479e-17)
    sum a = (1.0700034608346343e-16,-1.298219344525453e-16,-5.2832738184349636e-17)
    sum e = 2.592000937223698
    sum de = -4.607859233063394e-19
Info: CFL hydro = 0.007333287182053403 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007333287182053403 cfl multiplier : 0.6513473121065952        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5883e+04 |  512 |      1 | 3.223e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 599.799493526673 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 7.92332595576684, dt = 0.007333287182053403 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (1.3%)
   patch tree reduce : 2.30 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 491.23 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (79.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0345240289422185e-17,-5.912653179562799e-17,-1.0819470319667346e-17)
    sum a = (-2.700183826531699e-17,1.0120786045168806e-16,-2.2985519737561687e-17)
    sum e = 2.5920009777418365
    sum de = 1.2807138162485021e-18
Info: CFL hydro = 0.00864208219605761 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00864208219605761 cfl multiplier : 0.76756487473773           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5464e+04 |  512 |      1 | 3.311e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 797.3407388046388 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.930659242948893, dt = 0.00864208219605761 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.3%)
   patch tree reduce : 2.28 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 444.02 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.98 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.54314752221741e-18,-5.749014545669562e-17,-1.0895581312175828e-17)
    sum a = (-1.2147314404353793e-16,4.9223320731928145e-18,1.672334146163301e-16)
    sum e = 2.5920010119667785
    sum de = -1.1045309632196076e-18
Info: CFL hydro = 0.009515588560974042 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009515588560974042 cfl multiplier : 0.8450432498251533        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5931e+04 |  512 |      1 | 3.214e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 968.0710273511379 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.939301325144951, dt = 0.009515588560974042 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.5%)
   patch tree reduce : 1914.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 390.39 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (73.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.073619897630557e-18,-5.79307110094851e-17,-8.460029551904391e-18)
    sum a = (2.5666968550552837e-17,-6.602628600110849e-17,3.090691765017528e-17)
    sum e = 2.592001037476812
    sum de = 4.0657581468206416e-19
Info: CFL hydro = 0.010099500542927898 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010099500542927898 cfl multiplier : 0.8966954998834357        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5045e+04 |  512 |      1 | 3.403e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1006.6212924497272 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.948816913705925, dt = 0.010099500542927898 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.4%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 412.09 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (75.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.89913143176102e-18,-5.888356208877399e-17,-8.884494702432465e-18)
    sum a = (-8.812481994135979e-17,1.1829990112510736e-16,-3.9261562750914083e-17)
    sum e = 2.592001054511751
    sum de = -8.131516293641283e-20
Info: CFL hydro = 0.010487776370394778 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010487776370394778 cfl multiplier : 0.9311303332556239        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5474e+04 |  512 |      1 | 3.309e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1098.854096437812 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.958916414248853, dt = 0.010487776370394778 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.5%)
   patch tree reduce : 1864.00 ns (0.5%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 390.94 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.72 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.376911581591373e-18,-5.673928124214078e-17,-9.592912401934495e-18)
    sum a = (1.490136139481457e-16,1.14435804582369e-16,4.1931302180442386e-17)
    sum e = 2.5920010641478584
    sum de = -1.3552527156068805e-20
Info: CFL hydro = 0.010744723590412102 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010744723590412102 cfl multiplier : 0.9540868888370827        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6005e+04 |  512 |      1 | 3.199e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1180.2757665938773 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.969404190619248, dt = 0.010744723590412102 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.3%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 1212.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 438.53 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0444770048856355e-17,-5.5507600469142935e-17,-8.702999258758393e-18)
    sum a = (1.0782000292586246e-16,8.536140544412873e-17,-4.391018798566293e-18)
    sum e = 2.5920010678364265
    sum de = 1.2197274440461925e-19
Info: CFL hydro = 0.010917527550995025 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010917527550995025 cfl multiplier : 0.9693912592247219        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5338e+04 |  512 |      1 | 3.338e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1158.738042600897 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.980148914209661, dt = 0.010917527550995025 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.4%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 419.86 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.97 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1331755846166746e-17,-5.481821051776803e-17,-9.057208108509407e-18)
    sum a = (2.5011243076633603e-17,1.152086238909167e-16,-1.2796160615488605e-17)
    sum e = 2.592001067202844
    sum de = -6.640738306473715e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010158909343489949
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0883871928712984e-17,-5.4559872245119045e-17,-9.022079958120876e-18)
    sum a = (2.8517032485408933e-16,7.625150511003653e-17,1.6845411784233155e-17)
    sum e = 2.592000892307237
    sum de = -8.131516293641283e-19
Info: CFL hydro = 0.00551811049190051 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00551811049190051 cfl multiplier : 0.48979708640824066        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.0789e+04 |  512 |      1 | 4.745e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 828.2253981944823 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.991066441760656, dt = 0.00551811049190051 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.2%)
   patch tree reduce : 2.18 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 441.22 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.54 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3983931200500786e-17,-5.4457415139819166e-17,-8.790819634729719e-18)
    sum a = (6.955373776929008e-18,-6.128691304452261e-17,3.2096151908120316e-17)
    sum e = 2.5920009366507326
    sum de = -2.439454888092385e-19
Info: CFL hydro = 0.007435434064573893 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007435434064573893 cfl multiplier : 0.6598647242721604        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5605e+04 |  512 |      1 | 3.281e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 605.4579539267035 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.996584552252556, dt = 0.003415447747443956 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.1%)
   patch tree reduce : 2.15 us    (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 448.56 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.67 us    (79.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3269658809267338e-17,-5.50128790178378e-17,-8.635670303847043e-18)
    sum a = (5.1474449702659794e-17,-9.174301943137841e-17,-5.936071946488486e-17)
    sum e = 2.592000909428097
    sum de = -5.014435047745458e-19
Info: CFL hydro = 0.008714442863450494 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008714442863450494 cfl multiplier : 0.7732431495147735        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5415e+04 |  512 |      1 | 3.321e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 370.1828612569562 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1058                                                    [SPH][rank=0]
Info: time since start : 753.0348222460001 (s)                                        [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.1498428911023646 max=0.1501819948383106 delta=0.00033910373594600585
Number of particle pairs: 130816
Distance min=0.147231 max=1.993927 mean=0.805581
---------------- t = 8, dt = 0.008714442863450494 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.20 us   (1.6%)
   patch tree reduce : 1543.00 ns (0.2%)
   gen split merge   : 651.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 632.95 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3796581065095293e-17,-5.590937868921175e-17,-9.273831702572011e-18)
    sum a = (5.838298594573742e-17,-1.3211697361126263e-16,2.7833204491178877e-17)
    sum e = 2.5920009976298037
    sum de = 2.710505431213761e-20
Info: CFL hydro = 0.009566400659962296 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009566400659962296 cfl multiplier : 0.8488287663431823        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2947e+04 |  512 |      1 | 3.955e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 793.2956318518363 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.00871444286345, dt = 0.009566400659962296 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.2%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 408.20 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.432935801265467e-17,-5.722887983818093e-17,-8.69421722116126e-18)
    sum a = (3.545601312548996e-17,1.2517330921779646e-17,-4.2054250706802244e-17)
    sum e = 2.592001014250879
    sum de = 1.3552527156068805e-19
Info: CFL hydro = 0.010131058721769629 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010131058721769629 cfl multiplier : 0.8992191775621216        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4401e+04 |  512 |      1 | 3.555e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 968.645920956696 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 8.018280843523412, dt = 0.010131058721769629 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.1%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 405.99 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4642584020285732e-17,-5.655302886143493e-17,-9.531438138754566e-18)
    sum a = (-2.224782857940255e-17,-5.883965190078833e-17,-6.1474263179928104e-18)
    sum e = 2.592001024233031
    sum de = 5.963111948670274e-19
Info: CFL hydro = 0.010506371186319453 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010506371186319453 cfl multiplier : 0.9328127850414143        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5923e+04 |  512 |      1 | 3.215e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1134.2829591070922 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.028411902245182, dt = 0.010506371186319453 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.1%)
   patch tree reduce : 2.10 us    (0.5%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 447.44 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (74.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.40819972870021e-17,-5.74789849505826e-17,-9.229921514586348e-18)
    sum a = (-2.7563888671533476e-17,9.993958785536882e-17,-6.132789588664256e-17)
    sum e = 2.5920010299902683
    sum de = -2.0328790734103208e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010580393912296805
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.405711484714356e-17,-5.662849949703528e-17,-9.616331168860181e-18)
    sum a = (-2.393397979805201e-17,-3.6896267291419704e-17,-1.3395534681492904e-17)
    sum e = 2.592000893142208
    sum de = 2.4123498337802474e-18
Info: CFL hydro = 0.005379175926183912 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005379175926183912 cfl multiplier : 0.47760426168047143       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1493e+04 |  512 |      1 | 4.455e-02 | 0.1% |   2.0% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 848.9904301100112 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.038918273431502, dt = 0.005379175926183912 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.2%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 414.37 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4002958948627907e-17,-5.748429076496419e-17,-9.481673259037482e-18)
    sum a = (6.45187028802674e-17,5.84298234795888e-18,6.809006483643465e-17)
    sum e = 2.5920009286112444
    sum de = 1.463672932855431e-18
Info: CFL hydro = 0.007337568489206051 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007337568489206051 cfl multiplier : 0.6517361744536476        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6227e+04 |  512 |      1 | 3.155e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 613.7610127524861 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.044297449357686, dt = 0.007337568489206051 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.2%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 424.67 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.478748764063842e-17,-5.744971149192549e-17,-8.723490679818368e-18)
    sum a = (-3.138114768042044e-17,5.4963845974587144e-17,3.4062596493411587e-17)
    sum e = 2.5920009584268935
    sum de = -3.7947076036992655e-19
Info: CFL hydro = 0.008638714581281341 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008638714581281341 cfl multiplier : 0.7678241163024317        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7055e+04 |  512 |      1 | 3.002e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 879.8812446591568 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.051635017846891, dt = 0.008638714581281341 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.2%)
   patch tree reduce : 1964.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.2%)
   LB compute        : 398.11 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4010277313292186e-17,-5.677989816602752e-17,-8.52443116095003e-18)
    sum a = (9.66960886361612e-17,2.4577995888508398e-17,1.6931768487271626e-17)
    sum e = 2.5920009833448785
    sum de = 1.07742590890747e-18
Info: CFL hydro = 0.009503480432903028 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009503480432903028 cfl multiplier : 0.8452160775349545        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7140e+04 |  512 |      1 | 2.987e-02 | 0.1% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.0811719788596 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.060273732428172, dt = 0.009503480432903028 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1133.00 ns (0.3%)
   LB compute        : 413.05 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.545638617095335e-17,-5.670598268291832e-17,-8.413192018053017e-18)
    sum a = (-1.0941247907680918e-16,6.16381945484079e-17,9.702395137312081e-17)
    sum e = 2.5920010032399197
    sum de = -1.2197274440461925e-18
Info: CFL hydro = 0.010078774518282532 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010078774518282532 cfl multiplier : 0.8968107183566364        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6683e+04 |  512 |      1 | 3.069e-02 | 0.1% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1114.799776054584 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.069777212861075, dt = 0.010078774518282532 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.3%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 439.97 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3424808140150013e-17,-5.586912768355823e-17,-7.087104340885997e-18)
    sum a = (-8.138021506676197e-18,-2.5994831287512453e-18,3.079567850727827e-17)
    sum e = 2.592001019844679
    sum de = -1.2874900798265365e-18
Info: CFL hydro = 0.010462359780938485 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010462359780938485 cfl multiplier : 0.9312071455710909        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6808e+04 |  512 |      1 | 3.046e-02 | 0.1% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1191.1220502887795 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.079855987379357, dt = 0.010462359780938485 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.1%)
   patch tree reduce : 1963.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 430.27 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3727788437251087e-17,-5.623431408030565e-17,-7.072467611557442e-18)
    sum a = (-1.6510230682609262e-17,-7.177852062723033e-17,-6.806664606950896e-17)
    sum e = 2.592001034903046
    sum de = -1.7211709488207383e-18
Info: CFL hydro = 0.010716671068717666 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010716671068717666 cfl multiplier : 0.9541380970473939        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6734e+04 |  512 |      1 | 3.060e-02 | 0.1% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1230.979621625768 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.090318347160295, dt = 0.010716671068717666 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.2%)
   patch tree reduce : 1904.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 406.01 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3586543999230538e-17,-5.737671080439932e-17,-8.332690006745968e-18)
    sum a = (-8.277948639057175e-17,-6.666152005396774e-17,-4.6755568167133884e-17)
    sum e = 2.5920010495090002
    sum de = 2.879912020664621e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010316810798357069
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.316646986750103e-17,-5.732767776114867e-17,-8.176077002930438e-18)
    sum a = (-1.299434193059723e-16,3.081909727420395e-17,-1.3070013821225858e-16)
    sum e = 2.592000900287385
    sum de = -1.0977546996415732e-18
Info: CFL hydro = 0.005440793710141417 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005440793710141417 cfl multiplier : 0.484712699015798         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1825e+04 |  512 |      1 | 4.330e-02 | 0.1% |   2.1% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 891.0613681514981 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.101035018229013, dt = 0.005440793710141417 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.1%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 421.17 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 us    (74.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2189468184820029e-17,-5.674659960680506e-17,-9.345551676281927e-18)
    sum a = (9.527778956422427e-18,-4.256360888743593e-17,1.1183632145361777e-16)
    sum e = 2.5920009377984905
    sum de = -1.8295911660692887e-18
Info: CFL hydro = 0.00736651324319102 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00736651324319102 cfl multiplier : 0.6564751326771986         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5628e+04 |  512 |      1 | 3.276e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 597.8669713105735 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.106475811939154, dt = 0.00736651324319102 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (1.5%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1333.00 ns (0.3%)
   LB compute        : 405.94 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.32 us    (74.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2720781459446551e-17,-5.717911495846383e-17,-7.895051799822195e-18)
    sum a = (-1.1146162118280677e-16,-1.0736333697081157e-16,-5.0045904920192895e-17)
    sum e = 2.5920009734610723
    sum de = -1.8007920458626425e-18
Info: CFL hydro = 0.008648644732866693 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008648644732866693 cfl multiplier : 0.770983421784799         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5805e+04 |  512 |      1 | 3.239e-02 | 0.1% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 818.657269018779 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 8.113842325182345, dt = 0.008648644732866693 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.2%)
   patch tree reduce : 1714.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 437.69 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.75 us    (77.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1290773004046794e-17,-5.850447079916444e-17,-8.948896311478105e-18)
    sum a = (2.4712653798331096e-17,4.2973437308635455e-17,3.9284981517839765e-17)
    sum e = 2.592001006595068
    sum de = 5.869938324472301e-19
Info: CFL hydro = 0.009502605711520144 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009502605711520144 cfl multiplier : 0.8473222811898659        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5404e+04 |  512 |      1 | 3.324e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 936.7216391912127 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.122490969915212, dt = 0.009502605711520144 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.2%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 417.19 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.41 us    (77.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2242892246869252e-17,-5.722375698291594e-17,-8.155585581870461e-18)
    sum a = (1.383932031473467e-16,8.313662258618848e-19,6.200118543575606e-17)
    sum e = 2.5920010356914136
    sum de = 2.176874674443552e-19
Info: CFL hydro = 0.010072202078238958 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010072202078238958 cfl multiplier : 0.8982148541265772        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5927e+04 |  512 |      1 | 3.215e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1064.1339931479392 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.131993575626732, dt = 0.010072202078238958 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.2%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 395.85 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (73.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4159571952443438e-17,-5.75794295055998e-17,-7.50864214554836e-18)
    sum a = (-1.0807760936204502e-17,3.0444397003392966e-17,-5.0244964439061235e-17)
    sum e = 2.5920010606292507
    sum de = -1.0503208545953324e-19
Info: CFL hydro = 0.010453291221943812 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010453291221943812 cfl multiplier : 0.9321432360843849        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6039e+04 |  512 |      1 | 3.192e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1135.9105422502 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 8.142065777704971, dt = 0.010453291221943812 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 430.35 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.56 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3184765779161723e-17,-5.713740027987746e-17,-8.640061322645609e-18)
    sum a = (-8.86400328137249e-18,-5.725303044157304e-17,2.6310984641009226e-17)
    sum e = 2.592001081505114
    sum de = 2.778268066994105e-19
Info: CFL hydro = 0.010709699419771802 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010709699419771802 cfl multiplier : 0.9547621573895899        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6038e+04 |  512 |      1 | 3.193e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1178.7531396189954 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.152519068926916, dt = 0.010709699419771802 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1001.00 ns (0.2%)
   LB compute        : 401.82 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3183302106228867e-17,-5.81180611448906e-17,-7.869437523497225e-18)
    sum a = (-8.922550198686708e-17,-6.99928396491467e-17,6.049067496904925e-17)
    sum e = 2.5920010983222537
    sum de = -1.1180834903756764e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010620462679819245
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2671016579729466e-17,-5.812098849075631e-17,-7.74282981480523e-18)
    sum a = (5.796144814107507e-17,-1.1352832736399865e-16,1.3169543580660025e-16)
    sum e = 2.5920009082962205
    sum de = 1.0028870095490916e-18
Info: CFL hydro = 0.005442454501485256 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005442454501485256 cfl multiplier : 0.4849207191298633        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1539e+04 |  512 |      1 | 4.437e-02 | 0.1% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 868.8905077578528 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.163228768346688, dt = 0.005442454501485256 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 398.80 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.51 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3765843933505329e-17,-5.907530324297805e-17,-6.5894555437151504e-18)
    sum a = (-3.7633958449578844e-17,3.465392035828518e-17,-6.955373776929008e-18)
    sum e = 2.5920009564884605
    sum de = 1.3552527156068805e-19
Info: CFL hydro = 0.007371536211597582 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007371536211597582 cfl multiplier : 0.6566138127532422        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5651e+04 |  512 |      1 | 3.271e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 598.9185263878783 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.168671222848173, dt = 0.007371536211597582 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 399.97 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3290150230327313e-17,-5.835224881414746e-17,-7.106863925479545e-18)
    sum a = (-2.299722912102453e-17,-4.313151398538384e-17,3.0327303168764527e-17)
    sum e = 2.5920009992795614
    sum de = 7.182839392716467e-19
Info: CFL hydro = 0.00866068326704079 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00866068326704079 cfl multiplier : 0.7710758751688281         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5678e+04 |  512 |      1 | 3.266e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 812.6206887479161 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.17604275905977, dt = 0.00866068326704079 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1944.00 ns (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 402.52 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3113045805451806e-17,-5.892161758502823e-17,-6.67288490088791e-18)
    sum a = (-1.6416555614906514e-17,6.615618697389941e-17,1.3068842882879571e-16)
    sum e = 2.5920010357838303
    sum de = -1.0842021724855044e-19
Info: CFL hydro = 0.00952420153854714 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00952420153854714 cfl multiplier : 0.8473839167792189         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5942e+04 |  512 |      1 | 3.212e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 970.7851097543236 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.18470344232681, dt = 0.00952420153854714 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 375.99 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2786646741425044e-17,-5.802145873132214e-17,-5.035034889022682e-18)
    sum a = (-1.6650743284163383e-16,-1.3741254228233356e-16,4.4987451264244524e-17)
    sum e = 2.592001063283751
    sum de = 1.4907779871675686e-19
Info: CFL hydro = 0.010103582553454492 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010103582553454492 cfl multiplier : 0.8982559445194793        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1556e+04 |  512 |      1 | 4.431e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 773.8751420276923 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.194227643865357, dt = 0.010103582553454492 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (1.4%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1323.00 ns (0.3%)
   LB compute        : 423.09 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.68 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0465261469916332e-17,-6.031942523590516e-17,-5.0328393796233995e-18)
    sum a = (3.2177385755893794e-17,7.491956274113809e-17,-3.1252344462329163e-17)
    sum e = 2.5920010816589283
    sum de = -4.0657581468206416e-20
Info: CFL hydro = 0.01047928165000003 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01047928165000003 cfl multiplier : 0.9321706296796529         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5851e+04 |  512 |      1 | 3.230e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1126.0469767346074 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.204331226418812, dt = 0.01047928165000003 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 401.15 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2051882929131618e-17,-5.832736637428893e-17,-5.768335028383253e-18)
    sum a = (8.248089711226924e-17,-1.6873221569957407e-17,1.1496272683819698e-16)
    sum e = 2.592001091310709
    sum de = 1.0299920638612292e-18
Info: CFL hydro = 0.01072667263590653 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01072667263590653 cfl multiplier : 0.9547804197864354         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6097e+04 |  512 |      1 | 3.181e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1186.0521775490442 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.214810508068812, dt = 0.01072667263590653 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.2%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 393.22 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2979851568561962e-17,-5.904163876552237e-17,-3.684796608463547e-18)
    sum a = (-4.10999359545805e-17,1.2080570918615584e-16,-4.6486252347488486e-18)
    sum e = 2.592001094050626
    sum de = 1.0028870095490916e-18
Info: CFL hydro = 0.010890695247006404 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010890695247006404 cfl multiplier : 0.9698536131909569        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6017e+04 |  512 |      1 | 3.197e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1208.0192049564894 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.225537180704718, dt = 0.010890695247006404 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 372.65 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2201177568282873e-17,-5.723400269344592e-17,-4.406753282594489e-18)
    sum a = (-1.3559466049972711e-16,-2.0561677360753094e-17,-1.9000816545156064e-16)
    sum e = 2.5920010915026848
    sum de = 2.0328790734103208e-19
Info: CFL hydro = 0.010999914630210132 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010999914630210132 cfl multiplier : 0.9799024087939712        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6323e+04 |  512 |      1 | 3.137e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1249.9575703166415 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.236427875951724, dt = 0.010999914630210132 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 387.57 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.95004859755122e-18,-5.811952481782345e-17,-7.506812554382291e-18)
    sum a = (7.252792116885232e-17,6.82657055883773e-18,1.0591430076728469e-16)
    sum e = 2.5920010852326225
    sum de = -1.2739375526704677e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010167172580884096
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1194170590478337e-17,-5.788387347563373e-17,-5.884193888974591e-18)
    sum a = (9.960001573494637e-17,-6.546716294075771e-17,9.958537900561782e-17)
    sum e = 2.5920009062249387
    sum de = -1.3552527156068805e-18
Info: CFL hydro = 0.0055371167522175165 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0055371167522175165 cfl multiplier : 0.4933008029313237       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1651e+04 |  512 |      1 | 4.395e-02 | 0.0% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 901.088267508889 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 8.247427790581934, dt = 0.0055371167522175165 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 398.04 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1773785071889086e-17,-5.866108380297996e-17,-5.411930669232956e-18)
    sum a = (-1.3643773610905185e-16,-3.311413643292127e-17,-2.564647712949286e-17)
    sum e = 2.5920009514395783
    sum de = -1.328147661294743e-18
Info: CFL hydro = 0.007432669884397869 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007432669884397869 cfl multiplier : 0.6622005352875492        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5631e+04 |  512 |      1 | 3.276e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 608.5627920290939 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.252964907334151, dt = 0.007432669884397869 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.1%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 406.03 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (72.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0251565221719439e-17,-5.881842864326192e-17,-5.936177147980535e-18)
    sum a = (-8.098209602902529e-17,-6.191921975151616e-17,2.348463220766539e-18)
    sum e = 2.592000983484559
    sum de = -1.5178830414797062e-18
Info: CFL hydro = 0.008696739976669778 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008696739976669778 cfl multiplier : 0.7748003568583662        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5952e+04 |  512 |      1 | 3.210e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 833.6473005045023 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.26039757721855, dt = 0.008696739976669778 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.1%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 414.01 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (74.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.753916424548592e-18,-5.955172878262249e-17,-5.7461512354946635e-18)
    sum a = (-5.505752104228989e-17,6.422596829369631e-17,1.5910124780138535e-17)
    sum e = 2.5920010067506083
    sum de = -6.776263578034403e-19
Info: CFL hydro = 0.009540569495228055 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009540569495228055 cfl multiplier : 0.8498669045722442        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6137e+04 |  512 |      1 | 3.173e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 986.7813425014594 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.26909431719522, dt = 0.009540569495228055 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.4%)
   patch tree reduce : 1984.00 ns (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 376.94 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.385070845469023e-18,-5.81839264268691e-17,-5.503638926432179e-18)
    sum a = (-2.1542923694939375e-16,-1.117660651528407e-16,1.3290150230327313e-17)
    sum e = 2.5920010209959763
    sum de = -2.710505431213761e-20
Info: CFL hydro = 0.01010500400125923 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01010500400125923 cfl multiplier : 0.8999112697148295         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5936e+04 |  512 |      1 | 3.213e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1069.0389480524275 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.278634886690448, dt = 0.01010500400125923 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 385.06 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.229392002232714e-18,-6.028576075844949e-17,-5.404246386335465e-18)
    sum a = (-1.0313624954072509e-16,-2.0538258593827406e-17,-7.682526489971586e-17)
    sum e = 2.5920010286529065
    sum de = 1.4907779871675686e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010158964776439275
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.990501927317538e-18,-5.967980016424734e-17,-5.969407097534268e-18)
    sum a = (1.0730479005349736e-16,-2.081928379693565e-17,-8.947725373131821e-17)
    sum e = 2.592000906400644
    sum de = -1.2197274440461925e-19
Info: CFL hydro = 0.005236533745635052 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005236533745635052 cfl multiplier : 0.4666370899049432        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1934e+04 |  512 |      1 | 4.290e-02 | 0.0% |   2.0% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 847.9134446283168 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.288739890691707, dt = 0.005236533745635052 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1813.00 ns (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 383.30 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.290243491693161e-18,-5.98715413184514e-17,-6.388474954122439e-18)
    sum a = (-1.4004422621560764e-17,1.2587587222556706e-16,-1.4144935223114885e-17)
    sum e = 2.592000938979595
    sum de = -7.318364664277155e-19
Info: CFL hydro = 0.007228163875794623 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007228163875794623 cfl multiplier : 0.6444247266032955        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6223e+04 |  512 |      1 | 3.156e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 597.3372848083496 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.293976424437341, dt = 0.007228163875794623 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.2%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 433.77 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.933107296076436e-18,-5.86647429853121e-17,-6.268911171419811e-18)
    sum a = (1.4503242357077893e-16,7.921397912613593e-17,3.1287472612717695e-17)
    sum e = 2.5920009665401604
    sum de = 1.2332799712022613e-18
Info: CFL hydro = 0.008553175792988955 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008553175792988955 cfl multiplier : 0.7629498177355304        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6347e+04 |  512 |      1 | 3.132e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 830.8095871729289 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.301204588313135, dt = 0.008553175792988955 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.2%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 712.00 ns  (0.2%)
   LB compute        : 399.22 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.765625808011436e-18,-5.790546265139335e-17,-5.793400427358403e-18)
    sum a = (1.0732820882042304e-16,-3.057320022148424e-17,2.9765252762548045e-17)
    sum e = 2.5920009888155233
    sum de = -1.7211709488207383e-18
Info: CFL hydro = 0.00943521468923762 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00943521468923762 cfl multiplier : 0.8419665451570202         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6189e+04 |  512 |      1 | 3.163e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 973.5816834888179 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.309757764106124, dt = 0.00943521468923762 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 1894.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 424.67 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.65 us    (73.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0784342169278816e-17,-5.87968394675023e-17,-5.517315120398547e-18)
    sum a = (-4.5760270572792197e-17,6.894484982922222e-17,-9.892087149410145e-17)
    sum e = 2.5920010057749576
    sum de = -6.505213034913027e-19
Info: CFL hydro = 0.010023726760180266 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010023726760180266 cfl multiplier : 0.8946443634380135        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6411e+04 |  512 |      1 | 3.120e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1088.7405924534494 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.31919297879536, dt = 0.010023726760180266 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.53 us    (1.1%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.2%)
   LB compute        : 393.71 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.601694439531628e-18,-5.78328278821004e-17,-7.15662880519663e-18)
    sum a = (-9.320669236423385e-18,1.908629504443482e-17,-7.960038878040976e-17)
    sum e = 2.5920010194062004
    sum de = 7.724940478959219e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010321579466157424
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.619258514725892e-18,-5.792439891996216e-17,-7.038437215868554e-18)
    sum a = (-1.8268980078728348e-16,-6.999869434087813e-17,-6.964741283699283e-17)
    sum e = 2.592000908610553
    sum de = 2.439454888092385e-19
Info: CFL hydro = 0.005209960178635537 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005209960178635537 cfl multiplier : 0.4648814544793378        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1830e+04 |  512 |      1 | 4.328e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 833.7573043702139 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.32921670555554, dt = 0.005209960178635537 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (1.2%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 380.96 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.921397912613592e-18,-5.858579612649621e-17,-7.32275568307572e-18)
    sum a = (-1.127847815141081e-16,-1.0776145600854825e-16,2.7599016821922005e-17)
    sum e = 2.592000938055066
    sum de = 1.0028870095490916e-18
Info: CFL hydro = 0.007210026690247712 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007210026690247712 cfl multiplier : 0.6432543029862252        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5700e+04 |  512 |      1 | 3.261e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 575.114746881128 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 8.334426665734176, dt = 0.007210026690247712 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.2%)
   patch tree reduce : 1954.00 ns (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 389.53 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.312509972545733e-18,-5.969901087149107e-17,-6.945859902865448e-18)
    sum a = (1.1107521152853295e-16,-9.19537883337096e-17,-2.2294666113253925e-17)
    sum e = 2.5920009668898256
    sum de = -1.1926223897340549e-18
Info: CFL hydro = 0.008544870400868295 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008544870400868295 cfl multiplier : 0.7621695353241501        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5304e+04 |  512 |      1 | 3.345e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 775.863897454935 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 8.341636692424423, dt = 0.008544870400868295 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.2%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 376.35 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.168447251406419e-18,-6.037083674767172e-17,-7.32348751954215e-18)
    sum a = (-2.1791162624351656e-17,8.022098610394046e-17,-7.698919626819567e-17)
    sum e = 2.5920009934827197
    sum de = -1.9922214919421144e-18
Info: CFL hydro = 0.009438139721200143 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009438139721200143 cfl multiplier : 0.8414463568827667        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5864e+04 |  512 |      1 | 3.227e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 953.128063758172 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 8.350181562825291, dt = 0.009438139721200143 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.2%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.2%)
   LB compute        : 399.26 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (72.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.460029551904391e-18,-5.891649472976323e-17,-8.219255354449673e-18)
    sum a = (-1.0065386024660227e-16,-1.2140288774276086e-16,-2.224782857940255e-19)
    sum e = 2.592001017154558
    sum de = -4.0657581468206416e-20
Info: CFL hydro = 0.010030223947118909 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010030223947118909 cfl multiplier : 0.8942975712551778        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5818e+04 |  512 |      1 | 3.237e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1049.7339987918917 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.35961970254649, dt = 0.010030223947118909 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.2%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 425.81 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.931955010003321e-18,-6.10889512803539e-17,-7.88041507049364e-18)
    sum a = (7.817184399794286e-17,1.0330018090920489e-16,-3.0947900492295235e-17)
    sum e = 2.592001038350544
    sum de = -6.098637220230962e-20
Info: CFL hydro = 0.010425193070613108 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010425193070613108 cfl multiplier : 0.9295317141701185        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5633e+04 |  512 |      1 | 3.275e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1102.5444920762282 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.36964992649361, dt = 0.010425193070613108 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (1.1%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 22.30 us   (5.1%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 395.58 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.7586188302069e-18,-5.878805742990517e-17,-8.356108773671656e-18)
    sum a = (1.3193547816758854e-17,6.428451521101053e-18,-5.688418486249347e-17)
    sum e = 2.5920010577152297
    sum de = -5.861467994999758e-19
Info: CFL hydro = 0.010684569073972175 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010684569073972175 cfl multiplier : 0.953021142780079         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5451e+04 |  512 |      1 | 3.314e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1132.554734354963 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.380075119564223, dt = 0.010684569073972175 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.1%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 395.99 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.594687461727091e-18,-5.91902015682072e-17,-9.149419503279298e-18)
    sum a = (7.279870066143056e-17,-4.564317673816376e-17,-3.9261562750914083e-17)
    sum e = 2.5920010752977536
    sum de = 7.115076756936123e-19
Info: CFL hydro = 0.010847893385164318 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010847893385164318 cfl multiplier : 0.968680761853386         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5888e+04 |  512 |      1 | 3.223e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1193.579442494055 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.390759688638195, dt = 0.010847893385164318 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.2%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 403.58 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (73.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.461181837977505e-18,-5.99505796568256e-17,-9.478745913171771e-18)
    sum a = (5.560493471917782e-17,7.275039945464634e-17,-6.090050339024877e-17)
    sum e = 2.5920010907101108
    sum de = -7.877406409464993e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010017720200269876
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.47289122144035e-18,-5.943683045739334e-17,-9.547538541015977e-18)
    sum a = (-1.1305116998788777e-16,-9.399707574797578e-17,3.141627583080897e-17)
    sum e = 2.5920009204774623
    sum de = 2.019326546254252e-18
Info: CFL hydro = 0.005478470607911292 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005478470607911292 cfl multiplier : 0.48956025395112873       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1647e+04 |  512 |      1 | 4.396e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 888.3889490295013 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.40160758202336, dt = 0.005478470607911292 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.2%)
   patch tree reduce : 2.03 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 439.99 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.40 us    (75.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.97994482992781e-18,-6.069558917964901e-17,-8.862539608439634e-18)
    sum a = (3.6913831366613966e-17,1.5204634426502217e-17,2.693158196453993e-17)
    sum e = 2.5920009628636707
    sum de = -9.774760211314626e-19
Info: CFL hydro = 0.00737988150121165 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00737988150121165 cfl multiplier : 0.6597068359674192         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5341e+04 |  512 |      1 | 3.337e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 590.9544993960158 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.407086052631271, dt = 0.00737988150121165 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.2%)
   patch tree reduce : 1964.00 ns (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1143.00 ns (0.3%)
   LB compute        : 412.85 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (74.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.741054755012634e-18,-6.039773173781293e-17,-8.634206630914187e-18)
    sum a = (1.9034773757198308e-16,8.067179736725994e-17,1.363674798082748e-16)
    sum e = 2.5920010013787573
    sum de = -4.404571325722362e-19
Info: CFL hydro = 0.00864582792030484 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00864582792030484 cfl multiplier : 0.7731378906449461         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6245e+04 |  512 |      1 | 3.152e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 842.9258373691744 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.414465934132483, dt = 0.00864582792030484 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (1.1%)
   patch tree reduce : 1272.00 ns (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.2%)
   LB compute        : 397.41 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0995111071609997e-17,-5.944195331265834e-17,-7.110523107811684e-18)
    sum a = (-1.5876753037269432e-16,1.5544206546924678e-17,1.633458993066661e-17)
    sum e = 2.5920010353876775
    sum de = -9.690056916589196e-19
Info: CFL hydro = 0.009489414675409157 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009489414675409157 cfl multiplier : 0.8487585937632973        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6178e+04 |  512 |      1 | 3.165e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 983.4463524733153 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.423111762052788, dt = 0.009489414675409157 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.1%)
   patch tree reduce : 1903.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 409.03 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.985799521659232e-18,-5.956343816608534e-17,-7.501323780884084e-18)
    sum a = (1.1280820028103377e-16,-2.5631254930991163e-16,2.1147146533895267e-17)
    sum e = 2.5920010625200813
    sum de = 9.147955830346444e-19
Info: CFL hydro = 0.010052919176660402 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010052919176660402 cfl multiplier : 0.8991723958421982        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6423e+04 |  512 |      1 | 3.118e-02 | 0.0% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1095.7758587482354 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.432601176728197, dt = 0.010052919176660402 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 379.10 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.042720597366209e-17,-6.351315957539571e-17,-7.242253671768673e-18)
    sum a = (1.2724587009071974e-16,-2.952228305569404e-18,1.9402448397931592e-17)
    sum e = 2.592001082422411
    sum de = 9.215718466126788e-19
Info: CFL hydro = 0.01043114130317243 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01043114130317243 cfl multiplier : 0.9327815972281321         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4818e+04 |  512 |      1 | 3.455e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.3971371058717 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.442654095904857, dt = 0.01043114130317243 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 385.98 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (72.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1779639763620508e-17,-6.215413925723945e-17,-7.008066002511804e-18)
    sum a = (4.2575318270898775e-17,1.0166214793822306e-16,-2.885192085244626e-17)
    sum e = 2.5920010955220167
    sum de = 1.009663273127126e-18
Info: CFL hydro = 0.010687159152359299 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010687159152359299 cfl multiplier : 0.9551877314854215        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5751e+04 |  512 |      1 | 3.251e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1155.2375032292764 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.453085237208029, dt = 0.010687159152359299 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 390.35 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.18850242147861e-17,-6.060776880367769e-17,-7.596462521519687e-18)
    sum a = (-2.0023045721462297e-17,-1.8914606209410877e-16,-3.0561490838021398e-18)
    sum e = 2.5920011025812433
    sum de = 7.047314121155779e-19
Info: CFL hydro = 0.01086289170962598 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01086289170962598 cfl multiplier : 0.9701251543236143         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5902e+04 |  512 |      1 | 3.220e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1194.9747201905323 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.463772396360389, dt = 0.01086289170962598 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.2%)
   patch tree reduce : 1552.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 405.84 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.25 us    (73.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1258572199523975e-17,-6.431378866966763e-17,-7.526206220742626e-18)
    sum a = (-1.3784286212459307e-16,-5.399196714717114e-17,-4.812556603228657e-18)
    sum e = 2.592001104547059
    sum de = -2.0735366548785272e-18
Info: CFL hydro = 0.010986158648760794 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010986158648760794 cfl multiplier : 0.9800834362157428        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5994e+04 |  512 |      1 | 3.201e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1221.6006872908888 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.474635288070015, dt = 0.010986158648760794 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 391.53 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.86 us    (75.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.115755025823625e-18,-6.410448344026931e-17,-7.529133566608337e-18)
    sum a = (-3.292678629751577e-17,-6.298477364663491e-17,-6.917903749847909e-17)
    sum e = 2.59200110244897
    sum de = 8.402566836762659e-19
Info: CFL hydro = 0.011068460643638374 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011068460643638374 cfl multiplier : 0.9867222908104951        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5690e+04 |  512 |      1 | 3.263e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1211.9756136098374 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.485621446718776, dt = 0.011068460643638374 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1594.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 389.44 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.349942695080493e-18,-6.49226766097355e-17,-8.705926604624104e-18)
    sum a = (-4.344181264714919e-17,2.9566193243679705e-18,6.26334921427496e-17)
    sum e = 2.592001097141508
    sum de = -5.421010862427522e-20
Info: CFL hydro = 0.011110679001402531 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011110679001402531 cfl multiplier : 0.9911481938736634        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6565e+04 |  512 |      1 | 3.091e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1289.1475323538675 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.496689907362414, dt = 0.0033100926375855266 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.53 us    (1.1%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 399.15 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (73.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.232848860452059e-18,-6.445942412648675e-17,-7.754539198268073e-18)
    sum a = (7.45185163575357e-17,-6.930198602483894e-17,3.718314718625937e-17)
    sum e = 2.592000935875182
    sum de = -1.870248747537495e-18
Info: CFL hydro = 0.011142595918145943 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011142595918145943 cfl multiplier : 0.9940987959157755        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6511e+04 |  512 |      1 | 3.101e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 384.28330107492457 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 1114                                                    [SPH][rank=0]
Info: time since start : 755.9114403140001 (s)                                        [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.1498247238771649 max=0.15018225331739063 delta=0.00035752944022574007
Number of particle pairs: 130816
Distance min=0.146874 max=1.992698 mean=0.805308
---------------- t = 8.5, dt = 0.011142595918145943 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.32 us   (1.4%)
   patch tree reduce : 1843.00 ns (0.3%)
   gen split merge   : 572.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.1%)
   LB compute        : 688.41 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 4.74 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.88 us    (75.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0298402755570813e-17,-6.533909155913287e-17,-7.353492814665685e-18)
    sum a = (3.266917986133322e-17,1.491775453166255e-17,-6.641562300124804e-17)
    sum e = 2.5920010898305974
    sum de = -1.0706496453294356e-18
Info: CFL hydro = 0.011158720641268225 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011158720641268225 cfl multiplier : 0.9960658639438504        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5410e+04 |  512 |      1 | 3.323e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1207.309518723532 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.511142595918146, dt = 0.011158720641268225 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.2%)
   patch tree reduce : 1894.00 ns (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.2%)
   LB compute        : 397.45 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0409641898467825e-17,-6.481948766796919e-17,-8.697144567026971e-18)
    sum a = (8.852293897909647e-17,1.0892068497136975e-16,-6.793418366908555e-17)
    sum e = 2.592001079991904
    sum de = 9.351243737687476e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010203075411625134
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0667248334650382e-17,-6.405325488761937e-17,-8.700071912892682e-18)
    sum a = (2.4006577975521636e-16,1.100682045507284e-18,2.2842079790141857e-17)
    sum e = 2.592000920834402
    sum de = 1.4907779871675686e-19
Info: CFL hydro = 0.005585493360194648 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005585493360194648 cfl multiplier : 0.49868862131461683       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2044e+04 |  512 |      1 | 4.251e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 944.9379805959146 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.522301316559414, dt = 0.005585493360194648 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 2.30 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 403.79 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2892031192590636e-17,-6.483192888789845e-17,-8.08240193522769e-18)
    sum a = (9.782018944859416e-17,-8.080645527708263e-17,-2.293941404017674e-17)
    sum e = 2.5920009604982286
    sum de = -1.938011383317839e-18
Info: CFL hydro = 0.0074563359797435455 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0074563359797435455 cfl multiplier : 0.6657924142097446       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5842e+04 |  512 |      1 | 3.232e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 622.179379168366 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 8.52788680991961, dt = 0.0074563359797435455 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.3%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 414.75 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3401389373224326e-17,-6.568378653482032e-17,-8.392700596993042e-18)
    sum a = (-5.761016663718977e-18,1.443766980968597e-17,-1.1565943515423615e-17)
    sum e = 2.5920009885425657
    sum de = 6.098637220230962e-19
Info: CFL hydro = 0.008702632342196677 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008702632342196677 cfl multiplier : 0.7771949428064963        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5960e+04 |  512 |      1 | 3.208e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 836.7206069628243 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.535343145899352, dt = 0.008702632342196677 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 413.98 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (62.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2851048350470684e-17,-6.51261271474024e-17,-8.375136521798776e-18)
    sum a = (-2.9062689754777436e-17,5.902700203619382e-17,-7.55694335233259e-17)
    sum e = 2.592001009846
    sum de = 3.2526065174565133e-19
Info: CFL hydro = 0.00953061652379784 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00953061652379784 cfl multiplier : 0.8514632952043307         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6096e+04 |  512 |      1 | 3.181e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 984.9508573273753 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.544045778241548, dt = 0.00953061652379784 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (1.1%)
   patch tree reduce : 1684.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 407.33 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (73.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.23973097412855e-17,-6.435952844881936e-17,-9.469963875574638e-18)
    sum a = (1.2503279661624233e-16,-1.4683566862405682e-17,-4.663261964077403e-17)
    sum e = 2.592001024588061
    sum de = -2.3852447794681098e-18
Info: CFL hydro = 0.010082343031148326 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010082343031148326 cfl multiplier : 0.9009755301362204        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6033e+04 |  512 |      1 | 3.193e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1074.3767538570764 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.553576394765345, dt = 0.010082343031148326 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.3%)
   patch tree reduce : 1903.00 ns (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 386.59 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.442888777208884e-17,-6.502952473383395e-17,-9.733425003488617e-18)
    sum a = (7.072467611557442e-18,-1.3711688034989678e-17,-8.02853877129861e-17)
    sum e = 2.592001035028907
    sum de = -4.472333961502706e-19
Info: CFL hydro = 0.01045105788554277 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01045105788554277 cfl multiplier : 0.9339836867574803         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6337e+04 |  512 |      1 | 3.134e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1158.1593869401918 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.563658737796494, dt = 0.01045105788554277 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 416.95 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.40 us    (74.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3872692057603775e-17,-6.507229142734081e-17,-1.0798978898607369e-17)
    sum a = (1.160165713498529e-16,-1.401964482006246e-16,1.0236343023217742e-16)
    sum e = 2.5920010434656637
    sum de = -2.710505431213761e-20
Info: CFL hydro = 0.010698857291995418 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010698857291995418 cfl multiplier : 0.9559891245049869        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5930e+04 |  512 |      1 | 3.214e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1170.5794157413109 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.574109795682038, dt = 0.010698857291995418 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.5%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1283.00 ns (0.3%)
   LB compute        : 386.74 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.63 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5725701990598752e-17,-6.724863585915938e-17,-8.720563333952657e-18)
    sum a = (1.9847404969519644e-17,3.042097823646728e-17,-9.894429026102714e-17)
    sum e = 2.592001051644944
    sum de = 9.75781955236954e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010329750611409345
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.528952745660783e-17,-6.619890792762713e-17,-9.753916424548592e-18)
    sum a = (1.1538426464285933e-16,-5.121684326647724e-17,1.2880321809127792e-19)
    sum e = 2.5920009245652196
    sum de = 1.2739375526704677e-18
Info: CFL hydro = 0.005434104060206097 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005434104060206097 cfl multiplier : 0.485329708168329         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2105e+04 |  512 |      1 | 4.230e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 910.6079962660021 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.584808652974033, dt = 0.005434104060206097 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.4%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 387.87 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.91 us    (77.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6478029878086442e-17,-6.703896471152784e-17,-9.226994168720637e-18)
    sum a = (3.607661044902066e-17,-2.814935784467565e-17,3.943720350285673e-17)
    sum e = 2.5920009566664697
    sum de = -2.574980159653073e-19
Info: CFL hydro = 0.007356773052897643 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007356773052897643 cfl multiplier : 0.6568864721122193        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6005e+04 |  512 |      1 | 3.199e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 611.5383233141536 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.59024275703424, dt = 0.007356773052897643 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.2%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 414.78 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (75.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6486811915683574e-17,-6.735164184180908e-17,-8.887422048298176e-18)
    sum a = (-1.7786553480059197e-17,-1.2622715372945236e-17,-1.7985612998927537e-17)
    sum e = 2.592000985855971
    sum de = -6.640738306473715e-19
Info: CFL hydro = 0.008641394557923149 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.008641394557923149 cfl multiplier : 0.7712576480748128        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3758e+04 |  512 |      1 | 3.721e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 711.6758016537252 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.597599530087138, dt = 0.008641394557923149 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.4%)
   patch tree reduce : 1993.00 ns (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 389.58 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.51 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.599209046437844e-17,-6.747824955050107e-17,-9.23577620631777e-18)
    sum a = (7.325390294354861e-17,-7.571287347074573e-17,9.59701068614649e-17)
    sum e = 2.5920010126257074
    sum de = 7.182839392716467e-19
Info: CFL hydro = 0.009501749970578796 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.009501749970578796 cfl multiplier : 0.8475050987165419        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5767e+04 |  512 |      1 | 3.247e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 958.0046149044571 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.60624092464506, dt = 0.009501749970578796 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.1%)
   patch tree reduce : 1933.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 406.15 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.704593497603435e-17,-6.830376108463154e-17,-7.8291865178437e-18)
    sum a = (1.4123858332881766e-16,1.0399103453351266e-16,3.864096542738338e-18)
    sum e = 2.592001036339576
    sum de = -2.032879073410321e-18
Info: CFL hydro = 0.01008025500658908 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01008025500658908 cfl multiplier : 0.8983367324776946         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6535e+04 |  512 |      1 | 3.096e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1104.713489906899 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.615742674615639, dt = 0.01008025500658908 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 681.00 ns  (0.2%)
   LB compute        : 407.94 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8890162871432192e-17,-6.638415403319165e-17,-8.212668826251822e-18)
    sum a = (1.344295768451742e-16,-1.8188185332834728e-16,-4.6591636798654076e-17)
    sum e = 2.592001057490645
    sum de = 1.1384122811097797e-18
Info: CFL hydro = 0.010469562485233347 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010469562485233347 cfl multiplier : 0.932224488318463         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5907e+04 |  512 |      1 | 3.219e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1127.4633984058917 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.625822929622228, dt = 0.010469562485233347 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.5%)
   patch tree reduce : 2.25 us    (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 399.35 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.40 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0163558323016417e-17,-6.976670218102054e-17,-8.925477544552417e-18)
    sum a = (-5.269222558279552e-19,-6.563109430923753e-17,8.032637055510605e-18)
    sum e = 2.592001076460369
    sum de = 1.5449880957918438e-18
Info: CFL hydro = 0.010720088768950267 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010720088768950267 cfl multiplier : 0.9548163255456421        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6023e+04 |  512 |      1 | 3.195e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1179.4934358703927 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.636292492107462, dt = 0.010720088768950267 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.2%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 420.49 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9516614886694315e-17,-6.969571404377705e-17,-8.549313600808572e-18)
    sum a = (-2.975647072495091e-18,3.9378656585542516e-17,-4.290318100785839e-17)
    sum e = 2.5920010929525463
    sum de = -5.488773498207866e-19
Info: CFL hydro = 0.010886811209496946 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010886811209496946 cfl multiplier : 0.9698775503637614        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6172e+04 |  512 |      1 | 3.166e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1218.9979140633475 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.647012580876412, dt = 0.010886811209496946 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.2%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 421.46 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9575161804008535e-17,-6.88599567991166e-17,-9.364579424409048e-18)
    sum a = (1.1417892998265288e-16,4.6252064678231615e-18,-4.6509671114414175e-17)
    sum e = 2.592001107089191
    sum de = 4.506215279392878e-19
Info: CFL hydro = 0.010984472818408503 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.010984472818408503 cfl multiplier : 0.9799183669091743        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5655e+04 |  512 |      1 | 3.271e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1198.361635685318 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.657899392085909, dt = 0.010984472818408503 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.2%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.3%)
   LB compute        : 413.69 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 us    (75.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1357915436226448e-17,-6.8891425767173e-17,-9.919311465961255e-18)
    sum a = (-5.066942958958931e-17,-1.3565320741704134e-17,8.189542793912707e-17)
    sum e = 2.59200111811522
    sum de = 8.673617379884035e-19
Info: CFL hydro = 0.011046609439702012 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011046609439702012 cfl multiplier : 0.9866122446061162        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6032e+04 |  512 |      1 | 3.194e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1238.2405076907805 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.668883864904318, dt = 0.011046609439702012 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.5%)
   patch tree reduce : 1823.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 378.50 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.976836663114545e-17,-6.905023428038781e-17,-8.198032096923269e-18)
    sum a = (1.9548815691217136e-16,3.74875911562933e-17,-8.032637055510605e-18)
    sum e = 2.592001126140072
    sum de = -1.4166626042828173e-18
Info: CFL hydro = 0.011086142378147725 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011086142378147725 cfl multiplier : 0.9910748297374109        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6196e+04 |  512 |      1 | 3.161e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1257.9813723945376 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.67993047434402, dt = 0.011086142378147725 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.4%)
   patch tree reduce : 1893.00 ns (0.4%)
   gen split merge   : 1293.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 405.66 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3606117061092392e-17,-6.839011778767002e-17,-8.88961755769746e-18)
    sum a = (-8.321858827042839e-17,-1.2148485342700077e-17,-2.400423609882907e-18)
    sum e = 2.592001130980153
    sum de = 1.0842021724855044e-18
Info: CFL hydro = 0.01111168543061192 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01111168543061192 cfl multiplier : 0.9940498864916073         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5845e+04 |  512 |      1 | 3.231e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1235.1045927728917 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.691016616722168, dt = 0.01111168543061192 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.1%)
   patch tree reduce : 1994.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 433.36 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.56 us    (72.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1103236345909604e-17,-6.885410210738519e-17,-8.797772081160781e-18)
    sum a = (3.607661044902066e-17,-8.600249418871941e-17,5.859375484806862e-17)
    sum e = 2.5920011325847208
    sum de = -9.723938234479368e-19
Info: CFL hydro = 0.01112897658727285 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01112897658727285 cfl multiplier : 0.9960332576610714         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5029e+04 |  512 |      1 | 3.407e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1174.172348150023 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.70212830215278, dt = 0.01112897658727285 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (0.8%)
   patch tree reduce : 2.31 us    (0.3%)
   gen split merge   : 841.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.1%)
   LB compute        : 711.33 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.43 us    (77.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.22068457372826e-17,-7.038364032221911e-17,-7.851141611836532e-18)
    sum a = (1.0159061092362976e-16,-5.546149477175799e-17,1.1173093700245219e-16)
    sum e = 2.5920011310945434
    sum de = -1.4162390878091902e-18
Info: CFL hydro = 0.011141818102716106 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011141818102716106 cfl multiplier : 0.9973555051073809        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6010e+04 |  512 |      1 | 3.198e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1252.756156399741 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.713257278740052, dt = 0.011141818102716106 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.2%)
   patch tree reduce : 1904.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 413.34 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3650027249078055e-17,-7.063392839373738e-17,-6.3468517550943626e-18)
    sum a = (-6.654442621933932e-17,3.47944329598393e-17,2.5292268279741848e-17)
    sum e = 2.5920011268123333
    sum de = -5.014435047745458e-19
Info: CFL hydro = 0.01115272354356964 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01115272354356964 cfl multiplier : 0.9982370034049207         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5631e+04 |  512 |      1 | 3.275e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1224.568870294182 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.724399096842768, dt = 0.01115272354356964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.1%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 404.66 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.197558541389144e-17,-6.97498699422927e-17,-6.44528375982889e-18)
    sum a = (3.543259435856427e-17,-5.252463503198357e-17,4.653308988133986e-17)
    sum e = 2.5920011202258353
    sum de = 3.4558944247975454e-19
Info: CFL hydro = 0.01116333300032336 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01116333300032336 cfl multiplier : 0.9988246689366139         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5834e+04 |  512 |      1 | 3.234e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1241.6815746037214 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.735551820386338, dt = 0.01116333300032336 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 402.88 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2973810354098843e-17,-7.088275279232281e-17,-5.908939109495678e-18)
    sum a = (1.7936433588383594e-16,4.7748304333843083e-17,-6.231733878925282e-17)
    sum e = 2.59200111195584
    sum de = -1.0570971181733668e-18
Info: CFL hydro = 0.011172130557432842 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011172130557432842 cfl multiplier : 0.9992164459577427        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5943e+04 |  512 |      1 | 3.211e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1251.4049440761378 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.746715153386662, dt = 0.011172130557432842 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.2%)
   patch tree reduce : 1964.00 ns (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 380.75 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5684532625747103e-17,-6.984061766412974e-17,-7.150225236115387e-18)
    sum a = (-3.7821308584984334e-17,1.5115350377598036e-17,2.5760643618255584e-19)
    sum e = 2.592001102651382
    sum de = -4.2012834183813297e-19
Info: CFL hydro = 0.01117449425227526 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01117449425227526 cfl multiplier : 0.9994776306384953         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5833e+04 |  512 |      1 | 3.234e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1243.7405047042114 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.757887283944095, dt = 0.01117449425227526 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.2%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 400.33 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3977889986037672e-17,-6.984647235586117e-17,-6.811201993042748e-18)
    sum a = (1.129252941156622e-16,-7.297873243217178e-18,-4.828949740076638e-17)
    sum e = 2.592001092974021
    sum de = -3.3881317890172014e-19
Info: CFL hydro = 0.011177218068257793 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011177218068257793 cfl multiplier : 0.999651753758997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6436e+04 |  512 |      1 | 3.115e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1291.39556511517 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 8.76906177819637, dt = 0.011177218068257793 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.2%)
   patch tree reduce : 1592.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 399.96 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6164617347723684e-17,-7.004992289352807e-17,-7.551454578834382e-18)
    sum a = (-4.149805499231718e-17,-2.0667061811918687e-18,2.292111812851605e-17)
    sum e = 2.592001083924862
    sum de = -1.328147661294743e-18
Info: CFL hydro = 0.011180585934641479 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011180585934641479 cfl multiplier : 0.9997678358393314        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6148e+04 |  512 |      1 | 3.171e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1269.0952189750858 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.780238996264629, dt = 0.011180585934641479 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (1.1%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 417.77 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (74.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.468923503140541e-17,-7.010700613790944e-17,-6.968180915091492e-18)
    sum a = (-7.114621392023679e-17,-1.1606340888370427e-16,-1.2361632713547149e-17)
    sum e = 2.592001076242122
    sum de = 7.724940478959219e-19
Info: CFL hydro = 0.011184760437163998 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011184760437163998 cfl multiplier : 0.9998452238928875        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5513e+04 |  512 |      1 | 3.300e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1219.5271478794398 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.79141958219927, dt = 0.011184760437163998 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1963.00 ns (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.3%)
   LB compute        : 383.30 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3793467196497885e-17,-7.198489851076295e-17,-7.192854710284802e-18)
    sum a = (-6.5806735061180175e-18,2.6229018956769322e-17,4.0371026834018494e-17)
    sum e = 2.592001070553497
    sum de = -7.182839392716467e-19
Info: CFL hydro = 0.011189820140210452 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011189820140210452 cfl multiplier : 0.9998968159285916        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6190e+04 |  512 |      1 | 3.163e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1273.20105980908 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 8.802604342636434, dt = 0.011189820140210452 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.2%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 406.88 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.42 us    (73.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.407449239960613e-17,-7.092593114384205e-17,-6.4643115079560106e-18)
    sum a = (6.995185680702676e-17,1.090143600390725e-17,-1.677369181052324e-17)
    sum e = 2.592001067331568
    sum de = 6.369687763352339e-19
Info: CFL hydro = 0.011195786738325908 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011195786738325908 cfl multiplier : 0.999931210619061         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6201e+04 |  512 |      1 | 3.160e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1274.703835749968 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.813794162776643, dt = 0.011195786738325908 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 373.49 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5140046294724883e-17,-7.079493241635148e-17,-6.988672336151469e-18)
    sum a = (1.2182442554742324e-16,-3.4124070756591515e-17,-1.0684812409844646e-17)
    sum e = 2.592001066872519
    sum de = -4.743384504624082e-19
Info: CFL hydro = 0.011196758556025628 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011196758556025628 cfl multiplier : 0.9999541404127074        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6327e+04 |  512 |      1 | 3.136e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1285.2570141419124 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.82498994951497, dt = 0.011196758556025628 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 391.47 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.700183826531699e-17,-7.148285869479354e-17,-6.995075905232711e-18)
    sum a = (4.1451217458465805e-17,4.958631161927629e-17,-6.145084441300241e-17)
    sum e = 2.592001069113434
    sum de = 2.710505431213761e-18
Info: CFL hydro = 0.011197627953537117 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011197627953537117 cfl multiplier : 0.999969426941805         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6331e+04 |  512 |      1 | 3.135e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1285.6791799920852 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.836186708070995, dt = 0.011197627953537117 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1233.00 ns (0.3%)
   LB compute        : 385.41 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.96 us    (78.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6919872581077087e-17,-7.047731538992186e-17,-7.908956692684321e-18)
    sum a = (3.0807387890741114e-17,-7.239619060489532e-17,-2.798542647619584e-17)
    sum e = 2.5920010740326864
    sum de = 1.8973538018496328e-19
Info: CFL hydro = 0.011200518458648088 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011200518458648088 cfl multiplier : 0.9999796179612034        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6181e+04 |  512 |      1 | 3.164e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1273.991820476678 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.847384336024533, dt = 0.011200518458648088 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 390.78 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (73.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.720675247591675e-17,-7.1949038523908e-17,-8.087341831376077e-18)
    sum a = (-6.770365518216082e-17,5.501946554603565e-17,-4.9659495265919065e-17)
    sum e = 2.592001081335785
    sum de = 4.0657581468206416e-20
Info: CFL hydro = 0.011205359935809397 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011205359935809397 cfl multiplier : 0.9999864119741355        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6228e+04 |  512 |      1 | 3.155e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1278.0282018840253 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.85858485448318, dt = 0.011205359935809397 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.2%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.2%)
   LB compute        : 402.20 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5895301528078283e-17,-7.066173817946164e-17,-8.805822282291487e-18)
    sum a = (3.1638754116602993e-17,1.3120364170116082e-16,-6.777391148293788e-17)
    sum e = 2.592001090516622
    sum de = -6.776263578034403e-20
Info: CFL hydro = 0.01121100338684063 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01121100338684063 cfl multiplier : 0.9999909413160903         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6382e+04 |  512 |      1 | 3.125e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1290.7250465412678 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.86979021441899, dt = 0.01121100338684063 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.2%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 432.73 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.68964538141514e-17,-6.875457234795102e-17,-9.649995646315856e-18)
    sum a = (-1.1962306145640866e-16,1.059699203387332e-18,8.325371642081691e-18)
    sum e = 2.592001100916779
    sum de = -7.589415207398531e-19
Info: CFL hydro = 0.011217637427484217 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011217637427484217 cfl multiplier : 0.9999939608773936        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5766e+04 |  512 |      1 | 3.247e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1242.824082892675 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.88100121780583, dt = 0.011217637427484217 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 406.03 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4548722429851288e-17,-6.952958716589796e-17,-9.169910924339275e-18)
    sum a = (7.504543861336366e-17,8.25218799543892e-17,9.414344304126131e-17)
    sum e = 2.592001111836025
    sum de = 5.149960319306146e-19
Info: CFL hydro = 0.011225937075046318 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011225937075046318 cfl multiplier : 0.9999959739182623        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5869e+04 |  512 |      1 | 3.226e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1251.6268420208962 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.892218855233313, dt = 0.011225937075046318 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.3%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 385.10 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.60 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6387095633517708e-17,-6.811567911275962e-17,-7.686478406890296e-18)
    sum a = (-3.465392035828518e-17,-2.4466756745611384e-17,4.61935177609174e-17)
    sum e = 2.592001122573459
    sum de = -6.640738306473715e-19
Info: CFL hydro = 0.011216654756288129 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011216654756288129 cfl multiplier : 0.9999973159455081        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6289e+04 |  512 |      1 | 3.143e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1285.6922720713476 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.90344479230836, dt = 0.011216654756288129 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.2%)
   patch tree reduce : 1934.00 ns (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1001.00 ns (0.2%)
   LB compute        : 402.82 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.46 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5391798039176018e-17,-6.899754205480502e-17,-7.33300139360571e-18)
    sum a = (-5.3195729071697784e-17,-1.1229518291806795e-16,-2.6486625392951878e-17)
    sum e = 2.5920011318427387
    sum de = 2.0328790734103208e-19
Info: CFL hydro = 0.01120809594769984 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01120809594769984 cfl multiplier : 0.9999982106303387         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5769e+04 |  512 |      1 | 3.247e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1243.6251706871897 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.914661447064647, dt = 0.01120809594769984 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.5%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 391.50 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.85 us    (74.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4577995888508398e-17,-7.075321773776511e-17,-8.063374187100569e-18)
    sum a = (3.882831556278887e-17,-2.6116316140939453e-17,1.2411946470614055e-17)
    sum e = 2.592001139529798
    sum de = -6.2002811739014785e-19
Info: CFL hydro = 0.011201668729440561 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011201668729440561 cfl multiplier : 0.9999988070868925        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4326e+04 |  512 |      1 | 3.574e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1129.0192267153996 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.925869543012347, dt = 0.011201668729440561 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (0.8%)
   patch tree reduce : 1884.00 ns (0.2%)
   gen split merge   : 861.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.2%)
   LB compute        : 789.85 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 us    (73.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5625985708432886e-17,-7.052561659670609e-17,-7.668182495229603e-18)
    sum a = (-1.1359455856421034e-16,-4.886179351751285e-17,1.8266638202035778e-17)
    sum e = 2.592001145258464
    sum de = -1.2586909596198903e-18
Info: CFL hydro = 0.011197448961279052 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011197448961279052 cfl multiplier : 0.999999204724595         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5686e+04 |  512 |      1 | 3.264e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1235.4718474934891 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.937071211741788, dt = 0.011197448961279052 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.2%)
   patch tree reduce : 2.25 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 396.89 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3483168534732534e-17,-7.123037511387597e-17,-7.417894423711323e-18)
    sum a = (-5.1148050638633035e-17,1.5154869546785132e-17,1.4519635493925874e-17)
    sum e = 2.592001148759239
    sum de = -4.1425205076655626e-19
Info: CFL hydro = 0.011195480258970977 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011195480258970977 cfl multiplier : 0.9999994698163966        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6099e+04 |  512 |      1 | 3.180e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1267.4741085878695 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.948268660703068, dt = 0.011195480258970977 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 2.10 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 398.06 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3284109015864197e-17,-7.071955326030943e-17,-7.289091205620047e-18)
    sum a = (-6.479680073750993e-17,4.2098160894787904e-17,-7.224689596574407e-17)
    sum e = 2.5920011499645494
    sum de = -1.756746332605419e-18
Info: CFL hydro = 0.01119577414352271 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01119577414352271 cfl multiplier : 0.9999996465442645         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6028e+04 |  512 |      1 | 3.194e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1261.6771482290765 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.959464140962039, dt = 0.01119577414352271 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (1.1%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 408.65 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2599110083287854e-17,-7.005285023939379e-17,-8.650307033175597e-18)
    sum a = (8.046102846492875e-17,-8.698900974546397e-17,-2.5526455948998716e-17)
    sum e = 2.5920011489868235
    sum de = -2.625802136488331e-18
Info: CFL hydro = 0.011198309279817471 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011198309279817471 cfl multiplier : 0.9999997643628431        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6181e+04 |  512 |      1 | 3.164e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1273.7462466218287 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.970659915105562, dt = 0.011198309279817471 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.1%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 432.23 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (73.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.41740221590403e-17,-7.185536345620524e-17,-8.651770706108453e-18)
    sum a = (1.4435327932993402e-16,2.6129489197335155e-17,-1.5732727620676456e-16)
    sum e = 2.5920011461160586
    sum de = -4.1335207826009857e-19
Info: CFL hydro = 0.011203032675403748 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011203032675403748 cfl multiplier : 0.999999842908562         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5896e+04 |  512 |      1 | 3.221e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1251.6451561701233 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.98185822438538, dt = 0.011203032675403748 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1864.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 396.78 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6106070430409467e-17,-7.097057316829413e-17,-1.1109277560372722e-17)
    sum a = (-1.6839849827088305e-16,-5.744623526870995e-17,-9.95297594341693e-18)
    sum e = 2.5920011417581774
    sum de = -1.2197274440461925e-19
Info: CFL hydro = 0.011209859703255436 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011209859703255436 cfl multiplier : 0.9999998952723747        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5990e+04 |  512 |      1 | 3.202e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1259.5583997986466 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.993061257060784, dt = 0.006938742939215814 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.2%)
   patch tree reduce : 2.17 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 400.87 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3313382474521304e-17,-7.175802920617036e-17,-1.0389150477407848e-17)
    sum a = (-7.428432868827884e-17,1.2173075047972049e-16,2.6884744430688555e-17)
    sum e = 2.5920010321982367
    sum de = -6.640738306473715e-19
Info: CFL hydro = 0.011215686261559315 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011215686261559315 cfl multiplier : 0.9999999301815832        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5892e+04 |  512 |      1 | 3.222e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 775.3325396460551 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1162                                                    [SPH][rank=0]
Info: time since start : 758.2808632870001 (s)                                        [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14986401330811353 max=0.1501749224721726 delta=0.00031090916405907
Number of particle pairs: 130816
Distance min=0.147342 max=1.992069 mean=0.804844
---------------- t = 9, dt = 0.011215686261559315 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.81 us    (1.4%)
   patch tree reduce : 1793.00 ns (0.2%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.1%)
   LB compute        : 694.33 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.44 us    (81.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2669366384064914e-17,-6.968985935204563e-17,-1.0011522860731148e-17)
    sum a = (4.7423003024515966e-18,-2.7458504220367884e-17,-4.5180656091381446e-17)
    sum e = 2.592001133431165
    sum de = 3.5236570605778894e-19
Info: CFL hydro = 0.011225063649759018 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011225063649759018 cfl multiplier : 0.9999999534543887        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4576e+04 |  512 |      1 | 3.513e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1149.4329891056661 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.01121568626156, dt = 0.011225063649759018 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.2%)
   patch tree reduce : 1804.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 418.87 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (77.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3407057542224052e-17,-7.096032745776415e-17,-1.0854598470055876e-17)
    sum a = (-1.440254165929744e-17,-1.6581657921732606e-16,-5.875768621654842e-17)
    sum e = 2.5920011275977686
    sum de = -8.267041565201971e-19
Info: CFL hydro = 0.011222833243521805 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011222833243521805 cfl multiplier : 0.9999999689695924        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5482e+04 |  512 |      1 | 3.307e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1221.9207511365964 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.022440749911318, dt = 0.011222833243521805 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.3%)
   patch tree reduce : 1914.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 433.03 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.306163073007017e-17,-7.348516326693976e-17,-1.1627417778603544e-17)
    sum a = (1.4040721710295579e-16,2.773952942347613e-17,2.3085049496995857e-17)
    sum e = 2.592001122259092
    sum de = 3.1170812458958252e-19
Info: CFL hydro = 0.0112145005103477 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.0112145005103477 cfl multiplier : 0.9999999793130616          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5884e+04 |  512 |      1 | 3.223e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1253.4415311964608 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.03366358315484, dt = 0.0112145005103477 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.1%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 412.92 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.24 us    (72.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.550889187380445e-17,-7.217078497323559e-17,-1.0927782116698647e-17)
    sum a = (-7.947158556231848e-17,-8.716465049740663e-17,1.5347928006628762e-16)
    sum e = 2.5920011179103812
    sum de = 5.421010862427522e-20
Info: CFL hydro = 0.011207536250674967 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011207536250674967 cfl multiplier : 0.9999999862087078        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6075e+04 |  512 |      1 | 3.185e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1267.5414173257439 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.04487808366519, dt = 0.011207536250674967 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.1%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 449.62 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.347145915126969e-17,-7.387742761294502e-17,-8.395627942858751e-18)
    sum a = (2.8336707980081145e-17,-1.6276043013352393e-18,7.241082733422388e-17)
    sum e = 2.5920011151089275
    sum de = -1.0842021724855044e-18
Info: CFL hydro = 0.011202015731068818 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011202015731068818 cfl multiplier : 0.9999999908058053        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6208e+04 |  512 |      1 | 3.159e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1277.2388337226646 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.056085619915864, dt = 0.011202015731068818 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (0.8%)
   patch tree reduce : 1684.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1233.00 ns (0.2%)
   LB compute        : 639.87 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (76.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4349662910982948e-17,-7.32407298871529e-17,-8.053128476570581e-18)
    sum a = (6.780903963332641e-17,-3.7551992765338937e-17,-1.3579372001859545e-16)
    sum e = 2.592001114081271
    sum de = -8.131516293641283e-20
Info: CFL hydro = 0.011197994304142199 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011197994304142199 cfl multiplier : 0.9999999938705368        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4225e+04 |  512 |      1 | 3.599e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1120.4004441857246 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.067287635646933, dt = 0.011197994304142199 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.2%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 421.07 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.540936211437028e-17,-7.39930577746406e-17,-1.0772632785815972e-17)
    sum a = (8.689533467776122e-17,4.167369574425983e-17,1.5064121824948096e-17)
    sum e = 2.5920011148700897
    sum de = 1.7618285302889447e-19
Info: CFL hydro = 0.011188157932876678 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011188157932876678 cfl multiplier : 0.9999999959136913        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5815e+04 |  512 |      1 | 3.237e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1245.208955499619 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.078485629951075, dt = 0.011188157932876678 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.1%)
   patch tree reduce : 1993.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 428.19 us  (85.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.62 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6445642550831928e-17,-7.31163176878602e-17,-9.692442161368665e-18)
    sum a = (1.608166724786919e-16,3.98587413075191e-17,1.3851029698197514e-16)
    sum e = 2.5920011171534294
    sum de = -3.9302328752599536e-19
Info: CFL hydro = 0.011177659831969253 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011177659831969253 cfl multiplier : 0.9999999972757943        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5208e+04 |  512 |      1 | 3.367e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1196.381918920464 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.089673787883951, dt = 0.011177659831969253 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.2%)
   patch tree reduce : 1634.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 405.30 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8641151950115074e-17,-7.261866889068935e-17,-7.444240536502722e-18)
    sum a = (-1.0262103666835997e-16,6.61345977981398e-17,1.302786004075962e-16)
    sum e = 2.592001120754916
    sum de = 1.2061749168901237e-18
Info: CFL hydro = 0.011170125570685143 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011170125570685143 cfl multiplier : 0.9999999981838629        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6152e+04 |  512 |      1 | 3.170e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1269.4310057785053 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.10085144771592, dt = 0.011170125570685143 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.14 us    (1.0%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 390.30 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5994831287512453e-17,-7.182535816108171e-17,-5.9615398555201706e-18)
    sum a = (-1.321111189195312e-16,2.5959703137123925e-17,3.470661258386798e-17)
    sum e = 2.5920011253347504
    sum de = 1.4907779871675686e-19
Info: CFL hydro = 0.011165601947730426 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011165601947730426 cfl multiplier : 0.999999998789242         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6137e+04 |  512 |      1 | 3.173e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1267.4288674723266 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.112021573286604, dt = 0.011165601947730426 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.3%)
   patch tree reduce : 1883.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 424.43 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4373081677908636e-17,-7.164679006327335e-17,-6.151817336791376e-18)
    sum a = (-1.163151606281554e-16,-1.284753553543183e-16,5.135735586803136e-17)
    sum e = 2.5920011303802166
    sum de = -6.640738306473715e-19
Info: CFL hydro = 0.011164090743096702 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011164090743096702 cfl multiplier : 0.9999999991928279        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5636e+04 |  512 |      1 | 3.274e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1227.5677481774615 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.123187175234335, dt = 0.011164090743096702 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.1%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 436.02 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3325091857984148e-17,-7.399744879343917e-17,-5.520974302730685e-18)
    sum a = (1.0596113830113607e-16,-6.660297313665353e-17,1.4824079463959806e-17)
    sum e = 2.592001135317075
    sum de = 1.5720931501039814e-18
Info: CFL hydro = 0.011165561791027824 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011165561791027824 cfl multiplier : 0.9999999994618852        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5524e+04 |  512 |      1 | 3.298e-02 | 0.1% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1218.5931908326131 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.134351265977433, dt = 0.011165561791027824 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (1.5%)
   patch tree reduce : 1804.00 ns (0.4%)
   gen split merge   : 1072.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 410.79 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.36 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5497182490341606e-17,-7.415259812432185e-17,-5.4551090207521915e-18)
    sum a = (3.2007599695682567e-17,-1.20793999802693e-16,2.75170511376821e-17)
    sum e = 2.5920011395951983
    sum de = 2.1412992906588713e-18
Info: CFL hydro = 0.011169949326343609 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011169949326343609 cfl multiplier : 0.9999999996412567        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5802e+04 |  512 |      1 | 3.240e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1240.56942610086 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 9.14551682776846, dt = 0.011169949326343609 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 402.68 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5631840400164308e-17,-7.59470611400026e-17,-5.182865855241081e-18)
    sum a = (-1.1069465656599053e-16,6.708891255036153e-17,-4.5127963865798645e-17)
    sum e = 2.5920011427036296
    sum de = -5.624298769768554e-19
Info: CFL hydro = 0.011177146928631448 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011177146928631448 cfl multiplier : 0.9999999997608379        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5574e+04 |  512 |      1 | 3.288e-02 | 0.1% |   2.0% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1223.1488254146059 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.156686777094805, dt = 0.011177146928631448 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.2%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 418.74 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.30 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3617826444555233e-17,-7.40852691694105e-17,-6.069851652551472e-18)
    sum a = (6.643648034054123e-17,-2.299137442929311e-17,8.037320808895743e-17)
    sum e = 2.592001144237113
    sum de = 1.7550522667109103e-18
Info: CFL hydro = 0.011187013937152275 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011187013937152275 cfl multiplier : 0.9999999998405587        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5843e+04 |  512 |      1 | 3.232e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1245.0904939486304 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.167863924023436, dt = 0.011187013937152275 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1001.00 ns (0.2%)
   LB compute        : 399.70 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5520601257267294e-17,-7.499567373364657e-17,-4.338326572983498e-18)
    sum a = (-9.718056437693634e-17,-1.2997415643756227e-18,5.676709102786503e-17)
    sum e = 2.5920011439163586
    sum de = -6.2341624917916505e-19
Info: CFL hydro = 0.011195184168965564 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011195184168965564 cfl multiplier : 0.9999999998937058        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6099e+04 |  512 |      1 | 3.180e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1266.2933736900936 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.179050937960588, dt = 0.011195184168965564 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (1.1%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 411.31 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3207998023355715e-17,-7.497225496672088e-17,-3.922643460052555e-18)
    sum a = (-2.265765700060207e-18,1.0709402115116618e-16,-5.205991887580197e-17)
    sum e = 2.5920011415471027
    sum de = 9.452887691357992e-19
Info: CFL hydro = 0.011198267361174803 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011198267361174803 cfl multiplier : 0.9999999999291372        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5879e+04 |  512 |      1 | 3.224e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1249.9289171851212 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.190246122129553, dt = 0.011198267361174803 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1323.00 ns (0.3%)
   LB compute        : 391.22 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3887142264200633e-17,-7.319535602623439e-17,-5.092118133404044e-18)
    sum a = (4.473569951979339e-17,-1.233847008938471e-16,-4.447223839187941e-17)
    sum e = 2.592001137165128
    sum de = -2.117582368135751e-18
Info: CFL hydro = 0.011201834379572138 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011201834379572138 cfl multiplier : 0.9999999999527581        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6093e+04 |  512 |      1 | 3.181e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1267.1476443541028 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.201444389490728, dt = 0.011201834379572138 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.46 us    (0.8%)
   patch tree reduce : 1193.00 ns (0.3%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 411.00 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4496030204268494e-17,-7.579483915498563e-17,-5.517863997748368e-18)
    sum a = (1.5838112071842048e-16,9.95034133213779e-17,5.309034462053219e-17)
    sum e = 2.592001131248308
    sum de = 1.5844280673983722e-18
Info: CFL hydro = 0.01119929745367916 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01119929745367916 cfl multiplier : 0.9999999999685055         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6259e+04 |  512 |      1 | 3.149e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1280.6032561011195 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.2126462238703, dt = 0.01119929745367916 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (0.8%)
   patch tree reduce : 742.00 ns  (0.2%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 531.00 ns  (0.1%)
   LB compute        : 376.72 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 19.15 us   (4.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7060385182631207e-17,-7.340319758269986e-17,-4.430080569961872e-18)
    sum a = (9.738108756873754e-17,6.952446431063297e-19,-1.411449082611149e-16)
    sum e = 2.5920011241006082
    sum de = 8.538092108323347e-19
Info: CFL hydro = 0.011196024638742861 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011196024638742861 cfl multiplier : 0.9999999999790038        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6448e+04 |  512 |      1 | 3.113e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1295.164660488966 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.223845521323979, dt = 0.011196024638742861 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.08 us    (1.0%)
   patch tree reduce : 1142.00 ns (0.3%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1001.00 ns (0.2%)
   LB compute        : 391.90 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7798076340790345e-17,-7.371935093619664e-17,-6.996722537282173e-18)
    sum a = (8.195982954817272e-17,1.2435182278423134e-17,3.590096969707801e-17)
    sum e = 2.5920011165109944
    sum de = 1.1079190950086248e-18
Info: CFL hydro = 0.011186650513442437 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011186650513442437 cfl multiplier : 0.9999999999860026        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6154e+04 |  512 |      1 | 3.169e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1271.6750139288486 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.235041545962721, dt = 0.011186650513442437 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (1.0%)
   patch tree reduce : 1353.00 ns (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 417.10 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 19.49 us   (93.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.876995516820635e-17,-7.362567586849389e-17,-5.684905671210494e-18)
    sum a = (2.2555785364475334e-16,1.0208679604786774e-16,9.824172725325652e-18)
    sum e = 2.5920011090701385
    sum de = -1.1146953585866592e-18
Info: CFL hydro = 0.011173400332660214 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011173400332660214 cfl multiplier : 0.9999999999906685        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5955e+04 |  512 |      1 | 3.209e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1254.9729637072205 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.246228196476164, dt = 0.011173400332660214 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 428.82 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.53 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.203101846260825e-17,-7.211516540178708e-17,-5.645386502023397e-18)
    sum a = (4.6205227144380246e-17,1.6068786926060064e-16,6.929613133310753e-17)
    sum e = 2.5920011025810163
    sum de = -2.507217523872729e-19
Info: CFL hydro = 0.01116259528283703 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01116259528283703 cfl multiplier : 0.9999999999937789         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5406e+04 |  512 |      1 | 3.323e-02 | 0.1% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1210.3302802418577 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.257401596808824, dt = 0.01116259528283703 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.3%)
   patch tree reduce : 1904.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 418.90 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.22 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1328455454837646e-17,-7.008358737098375e-17,-4.599592191498192e-18)
    sum a = (1.0149693585592701e-16,-2.796493505513586e-17,-4.02919884956443e-17)
    sum e = 2.592001097886176
    sum de = -9.351243737687476e-19
Info: CFL hydro = 0.011154411191860466 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011154411191860466 cfl multiplier : 0.9999999999958525        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5853e+04 |  512 |      1 | 3.230e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1244.2830510065712 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.268564192091661, dt = 0.011154411191860466 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (1.1%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 395.70 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2897512838858666e-17,-7.142138443161361e-17,-5.642459156157686e-18)
    sum a = (-2.709551333301974e-17,4.734689203200748e-17,1.579830016806838e-16)
    sum e = 2.592001095574106
    sum de = 3.1848438816761693e-19
Info: CFL hydro = 0.011148991679075175 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011148991679075175 cfl multiplier : 0.9999999999972351        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6226e+04 |  512 |      1 | 3.155e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1272.6321935165313 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.279718603283522, dt = 0.011148991679075175 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.2%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 390.95 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.188465116932271e-17,-7.038803134101768e-17,-2.9031952623187472e-18)
    sum a = (-1.606527411102121e-17,-2.194338460936862e-17,1.0101099644221901e-16)
    sum e = 2.592001096082809
    sum de = 1.043544591017298e-18
Info: CFL hydro = 0.011146446619858625 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011146446619858625 cfl multiplier : 0.9999999999981567        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5892e+04 |  512 |      1 | 3.222e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1245.820197691449 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.290867594962597, dt = 0.011146446619858625 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.25 us    (1.0%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 401.20 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (72.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.165631819179726e-17,-7.108181231119115e-17,-2.0623151623933022e-18)
    sum a = (6.547887232422056e-17,-3.0824951965935377e-17,4.0403227638541317e-17)
    sum e = 2.5920010996650324
    sum de = -3.3881317890172014e-20
Info: CFL hydro = 0.011146847758716041 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011146847758716041 cfl multiplier : 0.9999999999987711        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5978e+04 |  512 |      1 | 3.204e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1252.249801039488 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.302014041582456, dt = 0.011146847758716041 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.1%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 414.22 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.25 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.278041900423023e-17,-7.149164073239067e-17,-2.0301143578704827e-18)
    sum a = (-4.971804218323328e-17,5.148030439439122e-17,6.252810769158401e-18)
    sum e = 2.5920011063587007
    sum de = -1.0842021724855044e-19
Info: CFL hydro = 0.011150229542132182 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011150229542132182 cfl multiplier : 0.9999999999991808        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6039e+04 |  512 |      1 | 3.192e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1257.0662049869188 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.313160889341173, dt = 0.011150229542132182 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.2%)
   patch tree reduce : 1914.00 ns (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 397.33 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.155678843236309e-17,-7.04231594914062e-17,-2.129644117304652e-18)
    sum a = (-1.226557917732851e-16,1.3264389586709058e-16,-4.6795087336320983e-17)
    sum e = 2.592001115976503
    sum de = -4.404571325722362e-19
Info: CFL hydro = 0.011156589001773574 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011156589001773574 cfl multiplier : 0.9999999999994538        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5722e+04 |  512 |      1 | 3.257e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1232.586848116948 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.324311118883305, dt = 0.011156589001773574 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (1.1%)
   patch tree reduce : 1834.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 401.41 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.987649190544506e-17,-6.847647449070848e-17,-2.7926879558881622e-18)
    sum a = (3.3957212042246e-18,-4.776257514493842e-17,-9.824172725325652e-18)
    sum e = 2.5920011281065882
    sum de = 3.3881317890172014e-19
Info: CFL hydro = 0.011165884795498128 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011165884795498128 cfl multiplier : 0.9999999999996358        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5965e+04 |  512 |      1 | 3.207e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1252.3907863878626 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.335467707885078, dt = 0.011165884795498128 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.1%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 418.52 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.059661898840993e-17,-6.987281846865256e-17,-2.748777767902499e-18)
    sum a = (-2.1135437150432423e-17,9.25743856572403e-17,-8.111675393884798e-17)
    sum e = 2.5920011421333258
    sum de = -2.710505431213761e-20
Info: CFL hydro = 0.011177282873909374 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011177282873909374 cfl multiplier : 0.9999999999997572        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5996e+04 |  512 |      1 | 3.201e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1255.82194721246 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 9.346633592680575, dt = 0.011177282873909374 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.0%)
   patch tree reduce : 1954.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 418.42 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0210209334136094e-17,-6.813397502442031e-17,-4.107066249592339e-18)
    sum a = (-1.0975205119723164e-16,9.616916638033324e-17,-7.13101452887166e-17)
    sum e = 2.592001157242683
    sum de = 1.5178830414797062e-18
Info: CFL hydro = 0.011191202249180871 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011191202249180871 cfl multiplier : 0.999999999999838         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5600e+04 |  512 |      1 | 3.282e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1225.9828450494347 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.357810875554485, dt = 0.011191202249180871 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.2%)
   patch tree reduce : 1893.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.2%)
   LB compute        : 406.27 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.858845972453228e-17,-6.696010933227025e-17,-4.85646679121432e-18)
    sum a = (2.021039585686779e-17,3.43084935461313e-17,2.1457445195660618e-17)
    sum e = 2.592001172526812
    sum de = -9.283481101907132e-19
Info: CFL hydro = 0.0112000865805086 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.0112000865805086 cfl multiplier : 0.999999999999892           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6055e+04 |  512 |      1 | 3.189e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1263.3651516709797 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.369002077803666, dt = 0.0112000865805086 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.28 us    (1.0%)
   patch tree reduce : 1343.00 ns (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 391.58 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (73.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9525210401559754e-17,-6.693083587361315e-17,-4.1041389037266284e-18)
    sum a = (3.793840241961277e-17,8.542580705317437e-17,3.1170378778089256e-17)
    sum e = 2.592001186761182
    sum de = -6.098637220230962e-20
Info: CFL hydro = 0.011207999085831305 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011207999085831305 cfl multiplier : 0.9999999999999281        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5735e+04 |  512 |      1 | 3.254e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1239.145435421828 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.380202164384174, dt = 0.011207999085831305 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.3%)
   LB compute        : 395.77 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.019264525894183e-17,-6.579209833185163e-17,-3.681869262597836e-18)
    sum a = (6.79407701972834e-17,-1.7382579750591098e-17,4.292659977478408e-17)
    sum e = 2.592001199044176
    sum de = 9.75781955236954e-19
Info: CFL hydro = 0.011214361868008546 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011214361868008546 cfl multiplier : 0.999999999999952         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5861e+04 |  512 |      1 | 3.228e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1249.917651946897 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.391410163470006, dt = 0.011214361868008546 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (1.1%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 395.01 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1047430251729405e-17,-6.64595331892337e-17,-3.037853172141447e-18)
    sum a = (-1.2682360044959096e-17,-1.1807742283931332e-16,-6.284426104508078e-17)
    sum e = 2.592001208445105
    sum de = -1.1993986533120893e-18
Info: CFL hydro = 0.011203645774293043 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011203645774293043 cfl multiplier : 0.999999999999968         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6219e+04 |  512 |      1 | 3.157e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1278.8975324378903 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.402624525338014, dt = 0.011203645774293043 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.19 us    (1.1%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 370.67 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.050294392070718e-17,-6.847061979897706e-17,-4.432001640686245e-18)
    sum a = (-7.039974072448052e-17,3.4279220087474195e-17,6.510417205340957e-17)
    sum e = 2.5920012136584627
    sum de = 7.995991022080595e-19
Info: CFL hydro = 0.011193390916009467 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011193390916009467 cfl multiplier : 0.9999999999999787        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5998e+04 |  512 |      1 | 3.200e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1260.2409228815416 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.413828171112307, dt = 0.011193390916009467 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.1%)
   patch tree reduce : 2.15 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 437.42 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.927931334884004e-17,-6.719429700152713e-17,-2.937774535357457e-18)
    sum a = (-7.342076165789413e-17,6.092977684890588e-17,4.5666595505089446e-17)
    sum e = 2.5920012147968623
    sum de = -1.9312351197398048e-18
Info: CFL hydro = 0.011183752637050048 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011183752637050048 cfl multiplier : 0.9999999999999858        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5848e+04 |  512 |      1 | 3.231e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1247.2774307193379 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.425021562028316, dt = 0.011183752637050048 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.39 us    (1.0%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 400.62 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.51 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.839525489739536e-17,-6.637024914032952e-17,-2.575972882267255e-18)
    sum a = (-7.731705900515529e-17,-1.6384354810383695e-16,5.270393496625836e-17)
    sum e = 2.592001211660741
    sum de = -1.0333801956502464e-18
Info: CFL hydro = 0.011174883037392397 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011174883037392397 cfl multiplier : 0.9999999999999906        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3933e+04 |  512 |      1 | 3.675e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1095.635829022892 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.436205314665367, dt = 0.011174883037392397 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.1%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 408.81 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7569743363264898e-17,-6.948787248731159e-17,-1.9252787840547124e-18)
    sum a = (-1.5345147028056338e-16,2.4961478196916518e-17,-7.789081879483461e-17)
    sum e = 2.592001204401791
    sum de = -1.094366567852556e-18
Info: CFL hydro = 0.011166926555371848 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011166926555371848 cfl multiplier : 0.9999999999999938        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6874e+04 |  512 |      1 | 3.034e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1325.8388740755818 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.44738019770276, dt = 0.011166926555371848 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.72 us    (0.9%)
   patch tree reduce : 1704.00 ns (0.4%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1263.00 ns (0.3%)
   LB compute        : 395.34 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5432780881295968e-17,-6.822033172745878e-17,-3.4656115867684465e-18)
    sum a = (-1.0184236266808089e-16,5.184036793587365e-17,2.5526455948998717e-18)
    sum e = 2.5920011933944944
    sum de = -4.675621868843738e-19
Info: CFL hydro = 0.011160017475664755 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011160017475664755 cfl multiplier : 0.9999999999999959        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6436e+04 |  512 |      1 | 3.115e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1290.4819699737081 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.458547124258132, dt = 0.011160017475664755 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.65 us    (0.6%)
   patch tree reduce : 561.00 ns  (0.1%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 702.00 ns  (0.1%)
   LB compute        : 583.93 us  (97.9%)
   LB move op cnt    : 0
   LB apply          : 2.62 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4642397497554036e-17,-6.759680705806237e-17,-3.0213868516468233e-18)
    sum a = (4.999906738634152e-18,1.1757099200454536e-16,6.475289054952427e-17)
    sum e = 2.592001179347786
    sum de = 1.2756316185649763e-18
Info: CFL hydro = 0.011154279441324673 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011154279441324673 cfl multiplier : 0.9999999999999973        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6677e+04 |  512 |      1 | 3.070e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1308.5925470922268 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.469707141733798, dt = 0.011154279441324673 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.24 us    (0.9%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 400.00 ns  (0.1%)
   LB compute        : 364.89 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.65 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5262994821084738e-17,-6.571745101227599e-17,-1.921070724372753e-18)
    sum a = (5.672025349401367e-17,-3.117989265215282e-17,-1.2016169309569947e-16)
    sum e = 2.5920011631267674
    sum de = -8.459741560702325e-19
Info: CFL hydro = 0.01114982341126649 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01114982341126649 cfl multiplier : 0.9999999999999982         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6551e+04 |  512 |      1 | 3.094e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1298.0392415638346 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.480861421175122, dt = 0.01114982341126649 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (0.8%)
   patch tree reduce : 861.00 ns  (0.2%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 389.17 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6234873648500744e-17,-6.686204324576894e-17,-4.27977965566928e-18)
    sum a = (-1.266955290679661e-17,1.8837104727616183e-17,-1.4004422621560764e-16)
    sum e = 2.592001145837728
    sum de = 1.2104100816263952e-18
Info: CFL hydro = 0.011146740647266977 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011146740647266977 cfl multiplier : 0.9999999999999988        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6396e+04 |  512 |      1 | 3.123e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1285.4020109001306 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.492011244586388, dt = 0.00798875541361177 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 382.67 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5643549783627152e-17,-6.639952259898663e-17,-5.485114315875728e-18)
    sum a = (-1.3128560738540073e-16,1.0187895449140228e-17,-8.059568637475146e-17)
    sum e = 2.592001068692532
    sum de = -2.027796875726795e-18
Info: CFL hydro = 0.011145744663748269 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011145744663748269 cfl multiplier : 0.9999999999999991        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5932e+04 |  512 |      1 | 3.214e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 894.8945997872496 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1207                                                    [SPH][rank=0]
Info: time since start : 760.689144339 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.1498863999099043 max=0.15014036383674217 delta=0.00025396392683788016
Number of particle pairs: 130816
Distance min=0.146542 max=1.989321 mean=0.804398
---------------- t = 9.5, dt = 0.011145744663748269 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.84 us   (1.5%)
   patch tree reduce : 1593.00 ns (0.2%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.2%)
   LB compute        : 673.56 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.22 us    (73.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.380517657996073e-17,-6.634243935460526e-17,-6.084488381880027e-18)
    sum a = (7.875731317108503e-17,8.960898429527519e-17,-1.4632045575169172e-16)
    sum e = 2.5920011194779797
    sum de = 8.063753657860939e-19
Info: CFL hydro = 0.011135610864817196 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011135610864817196 cfl multiplier : 0.9999999999999994        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4575e+04 |  512 |      1 | 3.513e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1142.2424987589318 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.511145744663748, dt = 0.011135610864817196 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (1.0%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 426.14 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6000685979243875e-17,-6.481290113977134e-17,-8.12045743148193e-18)
    sum a = (-1.1991579604297975e-16,-1.6665380013491936e-17,8.623960920384199e-17)
    sum e = 2.5920011036744945
    sum de = -4.743384504624082e-19
Info: CFL hydro = 0.011127335552599291 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011127335552599291 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6429e+04 |  512 |      1 | 3.116e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1286.3543507858153 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.522281355528566, dt = 0.011127335552599291 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.03 us    (1.0%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.2%)
   LB compute        : 386.72 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3436331000881162e-17,-6.581698077171016e-17,-5.845909693824591e-18)
    sum a = (3.7657377216504526e-17,-2.190240176724867e-17,1.1606340888370427e-16)
    sum e = 2.5920010923291885
    sum de = 9.147955830346444e-20
Info: CFL hydro = 0.011121867140487116 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011121867140487116 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6506e+04 |  512 |      1 | 3.102e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1291.4223577163343 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.533408691081165, dt = 0.011121867140487116 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.72 us    (0.9%)
   patch tree reduce : 1342.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 411.94 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (73.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.468923503140541e-17,-6.584918157623298e-17,-4.426146948954823e-18)
    sum a = (-1.8805269841326578e-17,-3.594780723092938e-18,1.6592196366849166e-17)
    sum e = 2.592001084999811
    sum de = -2.5038293920837118e-18
Info: CFL hydro = 0.011119291892973057 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011119291892973057 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5941e+04 |  512 |      1 | 3.212e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1246.592169480974 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.544530558221652, dt = 0.011119291892973057 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1893.00 ns (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 375.37 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.422085969289167e-17,-6.570866897467886e-17,-4.734981937787319e-18)
    sum a = (2.5884763082961724e-16,-1.9359709148292214e-16,1.3945875704246545e-17)
    sum e = 2.5920010822385713
    sum de = -2.066760391300493e-18
Info: CFL hydro = 0.011119658716062084 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011119658716062084 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6271e+04 |  512 |      1 | 3.147e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1272.0702550462127 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.555649850114625, dt = 0.011119658716062084 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.2%)
   patch tree reduce : 2.11 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 387.83 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.855918626587517e-17,-6.914683669395626e-17,-4.6369158512860054e-18)
    sum a = (6.429622459447337e-17,-5.932559131449633e-17,-1.0640902221858984e-16)
    sum e = 2.5920010843256933
    sum de = 2.710505431213761e-19
Info: CFL hydro = 0.011122974054577961 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011122974054577961 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6184e+04 |  512 |      1 | 3.164e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1265.3446196808188 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.566769508830687, dt = 0.011122974054577961 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.48 us    (1.1%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 692.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 380.76 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.821375945372129e-17,-6.904145224279068e-17,-6.432842539899619e-18)
    sum a = (6.89916873630736e-17,1.0342312943556475e-16,3.459537344097097e-17)
    sum e = 2.592001091236806
    sum de = -5.692061405548898e-19
Info: CFL hydro = 0.011129203513752536 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011129203513752536 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5896e+04 |  512 |      1 | 3.221e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1243.1761598922178 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.577892482885265, dt = 0.011129203513752536 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (1.1%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 394.79 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8916322461491896e-17,-6.679325061792473e-17,-5.292641325205239e-18)
    sum a = (-7.856996303567953e-17,1.4961664719648216e-16,-2.8199122724392734e-17)
    sum e = 2.5920011026413166
    sum de = 5.963111948670274e-19
Info: CFL hydro = 0.011137580009372013 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011137580009372013 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6425e+04 |  512 |      1 | 3.117e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1285.300457259695 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.589021686399017, dt = 0.011137580009372013 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.30 us    (1.0%)
   patch tree reduce : 1283.00 ns (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.2%)
   LB compute        : 400.04 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7113077408214002e-17,-6.495195006839261e-17,-5.8766468254145555e-18)
    sum a = (-1.1096982707736735e-16,8.630986550461905e-17,6.966204956632138e-17)
    sum e = 2.592001117904435
    sum de = -1.4230153513872246e-19
Info: CFL hydro = 0.011147465951957671 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011147465951957671 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6431e+04 |  512 |      1 | 3.116e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1286.7309970978156 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.600159266408388, dt = 0.011147465951957671 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.20 us    (1.1%)
   patch tree reduce : 1893.00 ns (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 671.00 ns  (0.2%)
   LB compute        : 376.37 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5784062385181273e-17,-6.456554041411877e-17,-4.575441588106077e-18)
    sum a = (-2.0168242076401555e-16,-3.43084935461313e-17,-7.05548900553632e-17)
    sum e = 2.5920011361232023
    sum de = 2.6156377411212794e-18
Info: CFL hydro = 0.011159961059156563 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011159961059156563 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6253e+04 |  512 |      1 | 3.150e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1273.9054795196196 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.611306732360346, dt = 0.011159961059156563 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.02 us    (1.0%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 378.24 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3257762903072797e-17,-6.546716294075771e-17,-6.1620630473213645e-18)
    sum a = (1.939073901446875e-16,5.766871355450398e-17,-2.725212633683527e-17)
    sum e = 2.5920011562249434
    sum de = -1.1587410718438829e-18
Info: CFL hydro = 0.01116738634950296 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01116738634950296 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6444e+04 |  512 |      1 | 3.114e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1290.3541742606533 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.622466693419502, dt = 0.01116738634950296 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (1.0%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 423.07 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.75433972504735e-17,-6.424060502302486e-17,-6.287938919546932e-18)
    sum a = (-2.441406452002859e-17,-2.675594121259728e-17,7.932814561489865e-17)
    sum e = 2.592001176772997
    sum de = -1.4365678785432934e-18
Info: CFL hydro = 0.01117263342379181 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01117263342379181 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6635e+04 |  512 |      1 | 3.078e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1306.2217785971566 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.633634079769005, dt = 0.01117263342379181 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.53 us    (1.1%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 18.10 us   (4.3%)
   LB compute        : 386.83 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.607972431761807e-17,-6.492853130146692e-17,-4.755473358847295e-18)
    sum a = (-8.465884243635813e-18,5.50341022753642e-17,1.4013204659157896e-16)
    sum e = 2.5920011964737433
    sum de = -4.0657581468206416e-20
Info: CFL hydro = 0.01117849708460067 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01117849708460067 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6254e+04 |  512 |      1 | 3.150e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1276.8839440499862 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.644806713192796, dt = 0.01117849708460067 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 701.00 ns  (0.2%)
   LB compute        : 412.13 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6006540670975297e-17,-6.385712271461674e-17,-2.8541622190680903e-18)
    sum a = (-9.996886131402593e-17,3.6591823321385775e-17,-4.6720440016745356e-18)
    sum e = 2.5920012141432034
    sum de = 2.439454888092385e-19
Info: CFL hydro = 0.011184529765576424 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011184529765576424 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5988e+04 |  512 |      1 | 3.202e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1256.6308305702373 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.655985210277397, dt = 0.011184529765576424 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.3%)
   patch tree reduce : 1963.00 ns (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 381.77 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.35 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.445212001628283e-17,-6.363757177468843e-17,-3.741148016378482e-18)
    sum a = (-1.7780698788327775e-17,3.5210116072770245e-17,9.361652078543337e-18)
    sum e = 2.5920012286317538
    sum de = -1.1824579943670033e-18
Info: CFL hydro = 0.011190442974764915 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011190442974764915 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6196e+04 |  512 |      1 | 3.161e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1273.705224839654 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.667169740042974, dt = 0.011190442974764915 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 391.86 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4832674978825242e-17,-6.326872619560886e-17,-3.583071339630095e-18)
    sum a = (-3.916496033734562e-17,-7.165557210087047e-17,3.1732429184305745e-17)
    sum e = 2.5920012389798535
    sum de = 3.8624702394796095e-19
Info: CFL hydro = 0.011196737716458148 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011196737716458148 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6137e+04 |  512 |      1 | 3.173e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1269.6656105707261 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.67836018301774, dt = 0.011196737716458148 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.89 us    (1.0%)
   patch tree reduce : 1133.00 ns (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 386.63 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.432038945232584e-17,-6.473532647433e-17,-3.1264053845792004e-18)
    sum a = (-1.04190094052381e-16,-8.594687461727091e-18,-1.2901984168534054e-16)
    sum e = 2.59200124456292
    sum de = -1.2366681029912785e-18
Info: CFL hydro = 0.011190841650791039 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011190841650791039 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6401e+04 |  512 |      1 | 3.122e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1291.2025318546764 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.689556920734198, dt = 0.011190841650791039 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.1%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 394.18 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.258740069982501e-17,-6.446015596295318e-17,-5.466818404215035e-18)
    sum a = (-1.296741034863269e-16,-2.9624740160993924e-17,8.509208962448334e-17)
    sum e = 2.592001244597776
    sum de = 3.015437292225309e-19
Info: CFL hydro = 0.011173494534609548 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011173494534609548 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6047e+04 |  512 |      1 | 3.191e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1262.6734621052576 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.700747762384989, dt = 0.011173494534609548 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.2%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 417.00 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (74.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.095394170675835e-17,-6.485534765482414e-17,-3.338637959843238e-18)
    sum a = (1.965712748824844e-18,-6.761583480618949e-17,4.74874046335616e-17)
    sum e = 2.592001239155206
    sum de = -2.4326786245143506e-18
Info: CFL hydro = 0.011156942851394305 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011156942851394305 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6218e+04 |  512 |      1 | 3.157e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1274.1163384277838 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.711921256919599, dt = 0.011156942851394305 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 415.25 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.186727361686014e-17,-6.586820932436011e-17,-3.104450290586369e-18)
    sum a = (5.3599702801165883e-17,-2.3588552985898126e-17,-6.694839994880741e-17)
    sum e = 2.5920012291324803
    sum de = 5.709002064493984e-19
Info: CFL hydro = 0.011141449362575238 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011141449362575238 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5633e+04 |  512 |      1 | 3.275e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1226.3560568767773 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.723078199770994, dt = 0.011141449362575238 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (0.8%)
   patch tree reduce : 1873.00 ns (0.3%)
   gen split merge   : 1062.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.1%)
   LB compute        : 699.40 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.24 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2695712496856312e-17,-6.594432031686859e-17,-4.420292257223401e-18)
    sum a = (1.5743851534966158e-16,-1.5134378125725156e-18,-4.463616976035922e-17)
    sum e = 2.592001215323831
    sum de = 8.487270131488089e-19
Info: CFL hydro = 0.011127262476634713 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011127262476634713 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5936e+04 |  512 |      1 | 3.213e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1248.4158008907239 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.73421964913357, dt = 0.011127262476634713 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (1.1%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 393.14 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5011243076633603e-17,-6.580673506118018e-17,-4.8696398476100185e-18)
    sum a = (1.0885628336232411e-16,3.5690200794746826e-17,2.0994924548878303e-17)
    sum e = 2.5920011987282283
    sum de = -1.019615910257364e-18
Info: CFL hydro = 0.011114596987405445 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011114596987405445 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6232e+04 |  512 |      1 | 3.154e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1269.951257922939 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.745346911610204, dt = 0.011114596987405445 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.2%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 399.91 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.607972431761807e-17,-6.525053934669512e-17,-4.317835151923522e-18)
    sum a = (-2.8980724070537535e-17,-3.687870321622544e-17,9.378045215391317e-17)
    sum e = 2.592001180536947
    sum de = 1.0507443710689596e-18
Info: CFL hydro = 0.011103651228886074 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011103651228886074 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5963e+04 |  512 |      1 | 3.207e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1247.5253089380071 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.75646150859761, dt = 0.011103651228886074 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (1.1%)
   patch tree reduce : 1572.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 383.71 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.54 us    (73.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4829747632959532e-17,-6.614045248987122e-17,-2.8365981438738253e-18)
    sum a = (8.512721777487187e-18,-5.920172799255344e-17,4.384578637661729e-17)
    sum e = 2.5920011620150465
    sum de = -6.191810844428935e-19
Info: CFL hydro = 0.011094599907637613 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011094599907637613 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6362e+04 |  512 |      1 | 3.129e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1277.41074172195 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 9.767565159826496, dt = 0.011094599907637613 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.2%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 433.18 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.526884951281616e-17,-6.676690450513334e-17,-2.6763259577261557e-18)
    sum a = (-1.3126218861847506e-16,-4.58978558284806e-17,-6.067802510445474e-17)
    sum e = 2.5920011444317606
    sum de = 8.588914085158605e-19
Info: CFL hydro = 0.011087587057886037 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011087587057886037 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6568e+04 |  512 |      1 | 3.090e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1292.4749038802536 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.778659759734134, dt = 0.011087587057886037 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.2%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 380.76 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3044066654875907e-17,-6.73494463324098e-17,-3.957771610441085e-18)
    sum a = (3.704848927643667e-17,-1.2144387058488083e-16,1.634044462239803e-17)
    sum e = 2.5920011289720595
    sum de = -4.912791094074942e-20
Info: CFL hydro = 0.01108272720499482 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01108272720499482 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6273e+04 |  512 |      1 | 3.146e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1268.6661037642086 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.789747346792021, dt = 0.01108272720499482 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 383.76 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4396500444834324e-17,-6.901510612999928e-17,-3.3737661102317684e-18)
    sum a = (-4.5221638933501396e-17,-2.238541383509096e-16,-4.5628540008835204e-17)
    sum e = 2.5920011166710593
    sum de = 4.438452643612534e-19
Info: CFL hydro = 0.011080104387415196 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011080104387415196 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6282e+04 |  512 |      1 | 3.145e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1268.7560120296525 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.800830073997016, dt = 0.011080104387415196 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.2%)
   patch tree reduce : 1793.00 ns (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 378.17 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3409984888089764e-17,-7.210638336418995e-17,-4.1246303247866044e-18)
    sum a = (8.440123600017557e-17,-9.636822589920158e-18,1.613260306593256e-17)
    sum e = 2.5920011083442693
    sum de = -1.5009423825346202e-18
Info: CFL hydro = 0.011079771354017682 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011079771354017682 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6178e+04 |  512 |      1 | 3.165e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1260.3602272853063 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.811910178384432, dt = 0.011079771354017682 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.22 us    (1.0%)
   patch tree reduce : 1984.00 ns (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 386.47 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5022952460096447e-17,-7.104668416080262e-17,-3.643081929877168e-18)
    sum a = (-4.2434805669344655e-17,9.06891749197225e-18,-8.215888906704106e-17)
    sum e = 2.592001104536108
    sum de = -1.2061749168901237e-18
Info: CFL hydro = 0.011080041804915872 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011080041804915872 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6120e+04 |  512 |      1 | 3.176e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1255.789646437409 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.82298994973845, dt = 0.011080041804915872 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (1.1%)
   patch tree reduce : 2.20 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 417.28 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (72.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3846159422080682e-17,-7.080664179981433e-17,-5.060649165347652e-18)
    sum a = (-7.784398126098325e-17,-2.657386029975006e-16,6.302356097935558e-17)
    sum e = 2.5920011054680336
    sum de = -2.337810934421869e-19
Info: CFL hydro = 0.011082094014864156 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011082094014864156 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5532e+04 |  512 |      1 | 3.296e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1210.0254604831207 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.834069991543366, dt = 0.011082094014864156 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1844.00 ns (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 381.09 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.275133206830482e-17,-7.536451931272614e-17,-3.5603844091708356e-18)
    sum a = (-1.0854598470055876e-17,3.7674941291698795e-17,-3.262344008218149e-18)
    sum e = 2.5920011110832357
    sum de = 9.351243737687476e-19
Info: CFL hydro = 0.011086485808279183 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011086485808279183 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6041e+04 |  512 |      1 | 3.192e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1249.9261303003839 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.84515208555823, dt = 0.011086485808279183 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 2.20 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 394.08 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2985519737561687e-17,-7.323926621422006e-17,-4.088770337931646e-18)
    sum a = (8.854635774602216e-17,3.1310891379643377e-17,-3.017800852961328e-17)
    sum e = 2.592001121005319
    sum de = 1.2400562347802957e-18
Info: CFL hydro = 0.01109318023940611 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01109318023940611 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6071e+04 |  512 |      1 | 3.186e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1252.7985386856374 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.856238571366509, dt = 0.01109318023940611 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 2.17 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 408.33 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4636542805822614e-17,-7.294653162764897e-17,-4.441515514749805e-18)
    sum a = (1.717532366329877e-16,-1.3360406531104373e-17,-1.0291084390906535e-17)
    sum e = 2.5920011345739824
    sum de = 4.404571325722362e-19
Info: CFL hydro = 0.011102107193251892 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011102107193251892 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6475e+04 |  512 |      1 | 3.108e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1285.0531054450564 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.867331751605915, dt = 0.011102107193251892 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1001.00 ns (0.2%)
   LB compute        : 406.68 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7089658641288317e-17,-7.34412530789541e-17,-4.396141653831287e-18)
    sum a = (-9.297250469497697e-17,1.0173112352518387e-16,7.170826432645327e-17)
    sum e = 2.5920011508914147
    sum de = 6.996492144320521e-19
Info: CFL hydro = 0.011113162377966312 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011113162377966312 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6142e+04 |  512 |      1 | 3.172e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1260.0807709709418 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.878433858799168, dt = 0.011113162377966312 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.3%)
   patch tree reduce : 1813.00 ns (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 377.23 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4566286505045554e-17,-7.158824314595913e-17,-3.228130653412653e-18)
    sum a = (-2.6076796971752357e-17,1.789193793122479e-17,-6.264812887207816e-17)
    sum e = 2.592001168883273
    sum de = 1.6483261153568685e-18
Info: CFL hydro = 0.011117405048752787 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011117405048752787 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6578e+04 |  512 |      1 | 3.088e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1295.3809465686227 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.889547021177135, dt = 0.011117405048752787 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.1%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 428.64 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.64 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4496030204268494e-17,-7.192488792051588e-17,-4.579100770438216e-18)
    sum a = (-5.4085642214873883e-17,9.14971223786587e-17,8.393871535339325e-17)
    sum e = 2.5920011871528237
    sum de = -1.035074261544755e-18
Info: CFL hydro = 0.011109949566618186 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011109949566618186 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5937e+04 |  512 |      1 | 3.213e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1245.7865880685235 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.900664426225887, dt = 0.011109949566618186 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.2%)
   patch tree reduce : 1893.00 ns (0.4%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 401.75 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3699792128795137e-17,-7.053147128843751e-17,-2.989551965357218e-18)
    sum a = (1.3199987977663418e-16,4.750496870875587e-17,-9.051353416777985e-18)
    sum e = 2.5920012042719707
    sum de = 1.7279472123987727e-19
Info: CFL hydro = 0.011103788355482194 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011103788355482194 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6072e+04 |  512 |      1 | 3.186e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1255.4583521970123 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.911774375792506, dt = 0.011103788355482194 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.1%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 425.36 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.621145488157506e-17,-7.031777504024062e-17,-3.493055454259486e-18)
    sum a = (4.348865018100057e-17,-6.210656988692165e-17,-4.0166112623418735e-17)
    sum e = 2.5920012193725617
    sum de = -7.928228386300251e-19
Info: CFL hydro = 0.011099058458784655 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011099058458784655 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6028e+04 |  512 |      1 | 3.194e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1251.378851403752 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.922878164147988, dt = 0.011099058458784655 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1864.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 399.68 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.618218142291795e-17,-7.146529461959927e-17,-4.149512764645147e-18)
    sum a = (6.374588357171973e-17,4.859394137080031e-18,2.8641151950115074e-17)
    sum e = 2.592001231494419
    sum de = -9.342773408214933e-19
Info: CFL hydro = 0.011095881377547153 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011095881377547153 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6459e+04 |  512 |      1 | 3.111e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1284.454507732029 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.933977222606773, dt = 0.011095881377547153 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 407.86 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.75 us    (74.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.697256480665988e-17,-7.116377799543106e-17,-3.4484134298073955e-18)
    sum a = (-9.702395137312081e-17,1.708399047228859e-17,6.560474819644613e-17)
    sum e = 2.5920012399329244
    sum de = -6.666149294891344e-19
Info: CFL hydro = 0.011094338449587297 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011094338449587297 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6290e+04 |  512 |      1 | 3.143e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1270.9101665650214 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.94507310398432, dt = 0.011094338449587297 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.2%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 398.63 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.526884951281616e-17,-7.09456907284356e-17,-2.5570366136984378e-18)
    sum a = (-7.273869007118349e-17,-3.224764205667086e-17,4.8037745656315244e-17)
    sum e = 2.5920012441996363
    sum de = -2.4587248876424203e-18
Info: CFL hydro = 0.011094504928400374 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011094504928400374 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6347e+04 |  512 |      1 | 3.132e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1275.183141500011 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.956167442433907, dt = 0.011094504928400374 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.3%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 380.49 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.54 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4478466129074228e-17,-7.159702518355626e-17,-2.119398406774664e-18)
    sum a = (9.437763071051819e-18,4.2469933819733186e-17,5.1811094477216545e-17)
    sum e = 2.592001244112813
    sum de = -6.649208635946258e-19
Info: CFL hydro = 0.011096448192687925 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011096448192687925 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6453e+04 |  512 |      1 | 3.112e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1283.470768252728 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.967261947362308, dt = 0.011096448192687925 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.2%)
   patch tree reduce : 1884.00 ns (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1323.00 ns (0.3%)
   LB compute        : 420.45 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5075644685679245e-17,-7.074077651783583e-17,-1.558811673491034e-18)
    sum a = (-5.334795105671475e-17,1.0339385597690765e-17,2.2394195872688095e-19)
    sum e = 2.5920012398023977
    sum de = 1.1257067869009652e-18
Info: CFL hydro = 0.011100176602511272 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011100176602511272 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6333e+04 |  512 |      1 | 3.135e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1274.346655390699 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.978358395554997, dt = 0.011100176602511272 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.5%)
   patch tree reduce : 1944.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 425.42 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (73.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.405107363268044e-17,-7.084908831486713e-17,-1.787144651016481e-18)
    sum a = (1.25694376781893e-16,-3.4519262448462486e-17,-6.956096465439606e-17)
    sum e = 2.5920012316522962
    sum de = -4.726443845678996e-19
Info: CFL hydro = 0.011105678158890284 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011105678158890284 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4345e+04 |  512 |      1 | 3.569e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1119.591065756145 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.989458572157508, dt = 0.010541427842492013 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.3%)
   LB compute        : 407.14 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6387095633517708e-17,-7.138625628122508e-17,-2.968328707830814e-18)
    sum a = (3.8395068374663666e-17,-2.030992561630196e-16,-4.093307724023498e-17)
    sum e = 2.5920012044753027
    sum de = -7.132017415881209e-19
Info: CFL hydro = 0.01111259758027395 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01111259758027395 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6059e+04 |  512 |      1 | 3.188e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1190.3174478542496 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 1252                                                    [SPH][rank=0]
Info: time since start : 762.906479328 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14984688985250258 max=0.15014583001685416 delta=0.00029894016435158544
Number of particle pairs: 130816
Distance min=0.145231 max=1.986928 mean=0.803875
---------------- t = 10, dt = 0.01111259758027395 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.83 us   (1.7%)
   patch tree reduce : 1623.00 ns (0.3%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.1%)
   LB compute        : 610.27 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.70 us    (75.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.635196748312918e-17,-7.442996414509794e-17,-3.247890238006201e-18)
    sum a = (7.393890187612495e-17,1.5813522366570076e-16,7.217078497323559e-17)
    sum e = 2.5920012078815424
    sum de = 2.879912020664621e-19
Info: CFL hydro = 0.011114735346193476 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011114735346193476 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6348e+04 |  512 |      1 | 3.132e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1277.3569275892726 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.011112597580274, dt = 0.011114735346193476 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.2%)
   patch tree reduce : 1863.00 ns (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1113.00 ns (0.3%)
   LB compute        : 388.88 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.761658089711627e-17,-7.055269454596391e-17,-1.8486189141964093e-18)
    sum a = (3.714801903587084e-18,3.7071908043362356e-17,-1.6457538457026467e-17)
    sum e = 2.592001192739162
    sum de = 3.8963515573697816e-20
Info: CFL hydro = 0.011111983273321809 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011111983273321809 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6246e+04 |  512 |      1 | 3.151e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1269.6632004834478 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.022227332926468, dt = 0.011111983273321809 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 411.06 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7159914942065377e-17,-7.102619273974264e-17,-2.4677525647942566e-18)
    sum a = (-3.264868844027324e-17,-1.820809128472156e-17,4.133412362383737e-18)
    sum e = 2.59200117745807
    sum de = 7.758821796849391e-19
Info: CFL hydro = 0.011111521485620468 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011111521485620468 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5785e+04 |  512 |      1 | 3.244e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1233.2988915596845 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.03333931619979, dt = 0.011111521485620468 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 393.19 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.646320662602619e-17,-7.162483496928051e-17,-2.3345583279044123e-18)
    sum a = (-2.2871353248798964e-17,-1.4296571738958707e-16,1.545638617095335e-17)
    sum e = 2.592001163139582
    sum de = 4.0826988057657276e-19
Info: CFL hydro = 0.01111336389202394 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01111336389202394 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6492e+04 |  512 |      1 | 3.104e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1288.5238239653386 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.04445083768541, dt = 0.01111336389202394 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 402.69 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.632269402447207e-17,-7.3771311325313e-17,-2.0337735402026214e-18)
    sum a = (3.1471895402257476e-17,1.6067615987713778e-16,-1.4700545468426806e-16)
    sum e = 2.5920011507726066
    sum de = 1.0842021724855044e-19
Info: CFL hydro = 0.011117494079035508 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011117494079035508 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6071e+04 |  512 |      1 | 3.186e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1255.7802050212547 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.055564201577434, dt = 0.011117494079035508 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.2%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 406.41 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6937436656271353e-17,-7.03675399199577e-17,-4.687412567469518e-18)
    sum a = (2.289184466985894e-17,-9.002174006234042e-17,-2.432038945232584e-17)
    sum e = 2.5920011412037987
    sum de = -5.183841637196318e-19
Info: CFL hydro = 0.011123862820333548 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011123862820333548 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5793e+04 |  512 |      1 | 3.242e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1234.5618741847995 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.06668169565647, dt = 0.011123862820333548 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.2%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 408.75 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7353119769202295e-17,-7.267575213507072e-17,-4.1363397082494476e-18)
    sum a = (-6.100881518728007e-17,-4.2815360631887066e-17,-2.265765700060207e-17)
    sum e = 2.59200113507573
    sum de = -4.895850435129856e-19
Info: CFL hydro = 0.011129631534457738 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011129631534457738 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5921e+04 |  512 |      1 | 3.216e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1245.2889108513587 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.077805558476804, dt = 0.011129631534457738 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.3%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 419.57 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6258292415426432e-17,-7.285212472347979e-17,-4.3463767741142025e-18)
    sum a = (5.031220191441428e-17,1.9317555367825978e-17,1.1354589143919292e-16)
    sum e = 2.5920011327407075
    sum de = -1.9439406139486193e-19
Info: CFL hydro = 0.011131040323224905 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011131040323224905 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6307e+04 |  512 |      1 | 3.140e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1276.0689788007458 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.088935190011261, dt = 0.011131040323224905 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 385.73 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (73.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.710136802475116e-17,-7.218450690698111e-17,-2.3338264914379846e-18)
    sum a = (2.7530956030544228e-17,-1.388440144106662e-17,-1.437795195402547e-16)
    sum e = 2.592001134272926
    sum de = 4.2203416596945514e-19
Info: CFL hydro = 0.011134629513999749 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011134629513999749 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5536e+04 |  512 |      1 | 3.296e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1215.9422464909412 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.100066230334486, dt = 0.011134629513999749 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1893.00 ns (0.4%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 407.19 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7493632370756416e-17,-7.268288754061839e-17,-5.415589851565095e-18)
    sum a = (-4.156831129309424e-19,-1.296872765427226e-16,-7.821868153179424e-18)
    sum e = 2.5920011396024023
    sum de = -1.0376153603865179e-19
Info: CFL hydro = 0.011140317105749883 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011140317105749883 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5538e+04 |  512 |      1 | 3.295e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1216.4703490553663 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.111200859848486, dt = 0.011140317105749883 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1954.00 ns (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 391.31 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.740581199478509e-17,-7.484528133979568e-17,-4.7181496990594815e-18)
    sum a = (1.0590405505675471e-16,3.313023683518268e-17,-5.070163039411213e-17)
    sum e = 2.5920011483071597
    sum de = -1.7025362239811437e-19
Info: CFL hydro = 0.011147992777894324 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011147992777894324 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6120e+04 |  512 |      1 | 3.176e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1262.6614883623533 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.122341176954237, dt = 0.011147992777894324 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1463.00 ns (0.4%)
   LB compute        : 384.27 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.939055249173705e-17,-7.340264870535004e-17,-5.500299922554103e-18)
    sum a = (-1.423275559908621e-16,2.1949971137566472e-17,-5.577179343352334e-17)
    sum e = 2.592001159744499
    sum de = 2.659683454378503e-19
Info: CFL hydro = 0.01115751671644734 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01115751671644734 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6880e+04 |  512 |      1 | 3.033e-02 | 0.1% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1323.14451700402 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 10.133489169732131, dt = 0.01115751671644734 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.3%)
   patch tree reduce : 1894.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.2%)
   LB compute        : 412.13 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6316839332740648e-17,-7.349943407803511e-17,-6.0976614382757255e-18)
    sum a = (-1.8809660860125142e-17,-1.119109687731934e-16,1.3649628302636606e-16)
    sum e = 2.592001173100036
    sum de = -6.437450399132683e-19
Info: CFL hydro = 0.011161098572772645 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011161098572772645 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3924e+04 |  512 |      1 | 3.677e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1092.384089122287 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.14464668644858, dt = 0.011161098572772645 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.3%)
   patch tree reduce : 1803.00 ns (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 374.37 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6738377137403013e-17,-7.530926565951085e-17,-3.631372546414324e-18)
    sum a = (-2.0435801488527527e-17,-7.792301959935743e-17,1.206066496672875e-17)
    sum e = 2.592001187285482
    sum de = 1.4941661189565858e-18
Info: CFL hydro = 0.011155039375733727 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011155039375733727 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5620e+04 |  512 |      1 | 3.278e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1225.8009254954286 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.155807785021352, dt = 0.011155039375733727 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.2%)
   patch tree reduce : 2.21 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 398.83 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (73.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6334403407934914e-17,-7.600963315788217e-17,-4.156099292842996e-18)
    sum a = (1.5957986885042906e-16,1.0377441093945006e-17,9.209430093526371e-17)
    sum e = 2.592001201176621
    sum de = 2.1108061045577164e-18
Info: CFL hydro = 0.011149827062145883 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011149827062145883 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5634e+04 |  512 |      1 | 3.275e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1226.2403189447634 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.166962824397086, dt = 0.011149827062145883 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.2%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 423.67 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.914465543901734e-17,-7.542526173943964e-17,-2.703403906983981e-18)
    sum a = (5.576740241472478e-17,-4.768646415242994e-17,-6.164990393187075e-17)
    sum e = 2.5920012140252906
    sum de = 8.74138001566438e-19
Info: CFL hydro = 0.011145544565646388 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011145544565646388 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5634e+04 |  512 |      1 | 3.275e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1225.6939927703447 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.178112651459232, dt = 0.011145544565646388 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 399.37 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.935542434134852e-17,-7.602061070487859e-17,-4.243187832347894e-18)
    sum a = (-1.941240137387501e-16,1.938488432273733e-17,-1.990595188683386e-17)
    sum e = 2.5920012250257307
    sum de = -3.083199928005653e-19
Info: CFL hydro = 0.011142264234961284 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011142264234961284 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5760e+04 |  512 |      1 | 3.249e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1235.0607395161865 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.189258196024879, dt = 0.011142264234961284 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.2%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 404.72 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 5.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.58718827611526e-17,-7.555003985696557e-17,-4.251238033478599e-18)
    sum a = (2.7383856900792257e-17,4.9536546739559207e-17,1.1647323730490378e-16)
    sum e = 2.592001233524229
    sum de = -5.624298769768554e-19
Info: CFL hydro = 0.011140045465840628 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011140045465840628 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5976e+04 |  512 |      1 | 3.205e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1251.5853811391241 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.20040046025984, dt = 0.011140045465840628 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 424.70 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7230171242842438e-17,-7.480539625237536e-17,-2.1413535007674954e-18)
    sum a = (3.429092947093704e-17,1.7686438251451886e-16,6.243443262388126e-17)
    sum e = 2.5920012390623763
    sum de = 1.9820570965750628e-18
Info: CFL hydro = 0.011138934604846565 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011138934604846565 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5313e+04 |  512 |      1 | 3.343e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1199.4701965899897 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.21154050572568, dt = 0.011138934604846565 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1674.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 380.84 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7634144972310537e-17,-7.235593959924181e-17,-1.8281274931364332e-18)
    sum a = (8.954751003209527e-18,4.533873276812983e-17,-7.445996944022149e-17)
    sum e = 2.592001241420255
    sum de = 3.1916201452542037e-18
Info: CFL hydro = 0.011135512257404846 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011135512257404846 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5701e+04 |  512 |      1 | 3.261e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1229.7399134508196 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.222679440330525, dt = 0.011135512257404846 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.2%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 417.75 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7604871513653427e-17,-7.229373349959545e-17,-3.2786273695961652e-18)
    sum a = (-1.1505932925176542e-17,1.8322257773484286e-16,8.871028911450196e-17)
    sum e = 2.592001240559203
    sum de = 2.710505431213761e-20
Info: CFL hydro = 0.011127552185980941 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011127552185980941 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5816e+04 |  512 |      1 | 3.237e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1238.377511765835 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.233814952587931, dt = 0.011127552185980941 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.47 us    (1.1%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 399.17 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7341410385739452e-17,-6.944469413579235e-17,-1.5163651584382266e-18)
    sum a = (2.427391783670768e-17,1.6627324517237696e-18,-9.248071058953756e-17)
    sum e = 2.5920012366746206
    sum de = 1.4704491964334654e-18
Info: CFL hydro = 0.011121217463498855 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011121217463498855 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5684e+04 |  512 |      1 | 3.264e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1227.1429385691733 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.244942504773912, dt = 0.011121217463498855 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.2%)
   patch tree reduce : 2.10 us    (0.5%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 418.71 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.791517017541878e-17,-7.040632725267837e-17,-3.518669730584456e-18)
    sum a = (6.749215444336321e-17,8.79374698059543e-17,-5.242876445488154e-17)
    sum e = 2.592001230440256
    sum de = -2.168404344971009e-19
Info: CFL hydro = 0.011116628892221012 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011116628892221012 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5765e+04 |  512 |      1 | 3.248e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1232.7614987902473 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.25606372223741, dt = 0.011116628892221012 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.3%)
   patch tree reduce : 1933.00 ns (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 396.53 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (61.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.887533961937194e-17,-6.902388816759642e-17,-3.871414907402615e-18)
    sum a = (-1.0843730698529424e-16,9.960587042667779e-17,-1.5695257593595358e-16)
    sum e = 2.5920012224957083
    sum de = 4.1335207826009857e-19
Info: CFL hydro = 0.011113883631664654 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011113883631664654 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5868e+04 |  512 |      1 | 3.227e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1240.3335787147014 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.267180351129632, dt = 0.011113883631664654 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 402.89 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.672666775394017e-17,-6.792466979502199e-17,-6.1825544683813406e-18)
    sum a = (5.871057424402214e-17,-9.471720283094065e-17,-2.224014429650506e-17)
    sum e = 2.592001213576423
    sum de = 5.488773498207866e-19
Info: CFL hydro = 0.011104536742271196 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011104536742271196 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5713e+04 |  512 |      1 | 3.259e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1227.8532448605295 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.278294234761296, dt = 0.011104536742271196 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.2%)
   patch tree reduce : 1864.00 ns (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 382.49 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8383545513932515e-17,-6.991380131077252e-17,-5.765407682517542e-18)
    sum a = (-9.254218485271748e-17,8.204179523241262e-17,3.8945409397417304e-17)
    sum e = 2.5920012042604936
    sum de = 1.362028979184915e-18
Info: CFL hydro = 0.01109564315326085 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01109564315326085 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5733e+04 |  512 |      1 | 3.254e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1228.4000772683623 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.289398771503567, dt = 0.01109564315326085 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.2%)
   patch tree reduce : 1602.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 394.38 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6328548716203492e-17,-6.808567381763609e-17,-4.9457508401185015e-18)
    sum a = (6.103296579067219e-17,9.683660123771532e-18,6.760998011445807e-17)
    sum e = 2.5920011955043076
    sum de = -7.148958074826295e-19
Info: CFL hydro = 0.011086322812413164 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011086322812413164 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6017e+04 |  512 |      1 | 3.197e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1249.567722608512 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.300494414656828, dt = 0.011086322812413164 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.28 us    (1.0%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.2%)
   LB compute        : 416.16 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.801469993485295e-17,-6.83740173854086e-17,-4.014854854822447e-18)
    sum a = (4.691876769914727e-17,3.2593068868824737e-17,1.318944953254686e-16)
    sum e = 2.5920011879756726
    sum de = -1.345088320239829e-18
Info: CFL hydro = 0.011076956259963843 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011076956259963843 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2259e+04 |  512 |      1 | 4.177e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 955.5751772667617 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.311580737469242, dt = 0.011076956259963843 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.51 us    (1.1%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 404.54 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.828987044622977e-17,-6.784416778371493e-17,-2.235028568470243e-18)
    sum a = (-2.0897517115196774e-16,-1.0756825118141133e-16,-3.790327426922424e-17)
    sum e = 2.5920011822407285
    sum de = -1.3417001884508117e-18
Info: CFL hydro = 0.011070023602328664 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011070023602328664 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6330e+04 |  512 |      1 | 3.135e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1271.8780942609337 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.322657693729207, dt = 0.011070023602328664 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.0%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.3%)
   LB compute        : 443.18 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4683380339673987e-17,-6.975426096109128e-17,-3.672355388534276e-18)
    sum a = (3.248036605299487e-17,-2.313188703084723e-17,-8.936601458842119e-17)
    sum e = 2.592001178741019
    sum de = 8.639736061993863e-19
Info: CFL hydro = 0.011065569654606444 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011065569654606444 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6045e+04 |  512 |      1 | 3.191e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1248.9183778919978 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.333727717331536, dt = 0.011065569654606444 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (1.2%)
   patch tree reduce : 1704.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 821.00 ns  (0.2%)
   LB compute        : 390.38 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 5.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.625243772369501e-17,-6.962253039713428e-17,-4.9398961483870796e-18)
    sum a = (-5.629798385288487e-17,5.965930874318737e-17,-2.2458597481733734e-17)
    sum e = 2.5920011776751344
    sum de = 1.841449627330849e-18
Info: CFL hydro = 0.01106360511269413 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01106360511269413 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5957e+04 |  512 |      1 | 3.209e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1241.5240444493215 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.344793286986143, dt = 0.01106360511269413 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.2%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 408.32 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5093208760873508e-17,-6.861405974639689e-17,-4.740836629518741e-18)
    sum a = (-8.159683866082456e-17,-2.7060385182631207e-17,-1.9437576548320124e-18)
    sum e = 2.5920011790430633
    sum de = 2.5614276324970042e-18
Info: CFL hydro = 0.01106410675400633 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01106410675400633 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6176e+04 |  512 |      1 | 3.165e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1258.3702775647696 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.355856892098837, dt = 0.01106410675400633 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.1%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 411.61 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4261842535011625e-17,-6.928149460377897e-17,-4.713758680260916e-18)
    sum a = (6.528347198768436e-17,-5.111145881531165e-18,1.2611005989482394e-17)
    sum e = 2.5920011826559035
    sum de = -8.597384414631148e-19
Info: CFL hydro = 0.01106701648504883 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01106701648504883 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6254e+04 |  512 |      1 | 3.150e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1264.4542100058925 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.366920998852843, dt = 0.01106701648504883 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.2%)
   patch tree reduce : 1664.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 425.89 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (72.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5491327798610184e-17,-6.916586444208339e-17,-4.598860355031764e-18)
    sum a = (1.0453844821040059e-16,-7.210931071005566e-17,2.405107363268044e-17)
    sum e = 2.5920011881580383
    sum de = 8.20774925889417e-19
Info: CFL hydro = 0.01106908646711142 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01106908646711142 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5859e+04 |  512 |      1 | 3.229e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1234.0340079041277 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.377988015337891, dt = 0.01106908646711142 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.2%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 401.89 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6949146039734194e-17,-7.039534970568196e-17,-4.292952712064979e-18)
    sum a = (-1.1400585065834272e-16,-1.0978132465588874e-16,3.690797667488255e-17)
    sum e = 2.5920011949832933
    sum de = 2.1057239068741906e-18
Info: CFL hydro = 0.01107212203719128 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01107212203719128 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5719e+04 |  512 |      1 | 3.257e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1223.4254805124772 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.389057101805003, dt = 0.01107212203719128 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.2%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 408.46 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4513594279462757e-17,-7.181657612348457e-17,-3.7696896385691625e-18)
    sum a = (-1.4420361877254956e-16,3.4188472365637154e-17,-3.346541793680657e-17)
    sum e = 2.592001202568708
    sum de = 1.650020181251377e-18
Info: CFL hydro = 0.011077035472738455 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011077035472738455 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5944e+04 |  512 |      1 | 3.211e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1241.225956638989 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.400129223842194, dt = 0.011077035472738455 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 386.61 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2692785150990602e-17,-7.053439863430321e-17,-4.49365886298278e-18)
    sum a = (-3.6610851069512895e-17,-1.163049149176254e-16,4.864077890465168e-17)
    sum e = 2.592001210298598
    sum de = -3.7947076036992655e-19
Info: CFL hydro = 0.011083774472515509 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011083774472515509 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6210e+04 |  512 |      1 | 3.159e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1262.5022039661635 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.411206259314932, dt = 0.011083774472515509 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (1.2%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 378.55 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 us    (72.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2932827511978893e-17,-7.27547904734449e-17,-3.4601228132702386e-18)
    sum a = (-2.0754516269656798e-17,-6.725138024590849e-17,6.784416778371493e-17)
    sum e = 2.5920012175276574
    sum de = -7.928228386300251e-19
Info: CFL hydro = 0.01109226586018945 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01109226586018945 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5621e+04 |  512 |      1 | 3.278e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1217.386680564128 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.422290033787448, dt = 0.01109226586018945 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.3%)
   patch tree reduce : 1984.00 ns (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 378.17 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.271620391791629e-17,-7.3169009913443e-17,-2.6298543421079957e-18)
    sum a = (-1.3271936650269094e-16,8.661833457521834e-17,-8.948310842304963e-17)
    sum e = 2.592001223670355
    sum de = -1.3213713977167085e-18
Info: CFL hydro = 0.01110241728535702 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01110241728535702 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5838e+04 |  512 |      1 | 3.233e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1235.280090946165 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.433382299647636, dt = 0.01110241728535702 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.2%)
   patch tree reduce : 1964.00 ns (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 382.87 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.067877119538153e-17,-7.135991016843368e-17,-4.441515514749805e-18)
    sum a = (-7.412698384799687e-17,1.7475522981827417e-17,-2.7634144972310537e-18)
    sum e = 2.592001228239431
    sum de = 9.012430558785756e-19
Info: CFL hydro = 0.011114118425188559 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011114118425188559 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6371e+04 |  512 |      1 | 3.127e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1278.0019977794361 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.444484716932994, dt = 0.011114118425188559 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.2%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 391.63 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0192831781673527e-17,-7.133063670977657e-17,-3.9885087420310496e-18)
    sum a = (6.629395518870443e-17,5.5084598991547715e-17,-4.1919592796979545e-18)
    sum e = 2.592001230896086
    sum de = -8.944667923005412e-19
Info: CFL hydro = 0.011127241555688082 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011127241555688082 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5237e+04 |  512 |      1 | 3.360e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1190.744571121288 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.455598835358183, dt = 0.011127241555688082 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.2%)
   patch tree reduce : 1864.00 ns (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 386.61 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1832145466471607e-17,-7.069393898398447e-17,-4.112920941323761e-18)
    sum a = (-1.0258151749917288e-17,2.713283699280755e-17,1.1547793971056208e-16)
    sum e = 2.59200123147237
    sum de = -1.1722935989999517e-18
Info: CFL hydro = 0.011141367875252928 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011141367875252928 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6404e+04 |  512 |      1 | 3.121e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1283.430830412942 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.46672607691387, dt = 0.011141367875252928 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 417.70 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1305223210643653e-17,-7.060904595387885e-17,-2.1003706586475433e-18)
    sum a = (-1.743885797485939e-16,4.468886198594202e-17,7.875731317108503e-17)
    sum e = 2.5920012299461663
    sum de = 7.724940478959219e-19
Info: CFL hydro = 0.011144055789822372 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011144055789822372 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6344e+04 |  512 |      1 | 3.133e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1280.3348492905725 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.477867444789123, dt = 0.011144055789822372 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.48 us    (1.1%)
   patch tree reduce : 1522.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 403.98 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.847740710436696e-17,-6.987574581451828e-17,-1.4270811095340452e-18)
    sum a = (2.0216616466832426e-17,-4.464056077915779e-17,-1.2493912154853958e-16)
    sum e = 2.5920012262194976
    sum de = 1.429791614965259e-18
Info: CFL hydro = 0.011129880841286357 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011129880841286357 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5893e+04 |  512 |      1 | 3.222e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1245.3267451024478 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.489011500578945, dt = 0.010988499421054954 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1303.00 ns (0.3%)
   LB compute        : 383.07 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9823986202593957e-17,-7.109498536758685e-17,-4.010463836023881e-18)
    sum a = (-1.5984772099714163e-17,5.4245182564555124e-17,1.463672932855431e-18)
    sum e = 2.592001217379416
    sum de = 7.115076756936123e-19
Info: CFL hydro = 0.01111610290154508 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01111610290154508 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5965e+04 |  512 |      1 | 3.207e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1233.4866936273663 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 1297                                                    [SPH][rank=0]
Info: time since start : 765.338976828 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14987894903779173 max=0.15013130071984013 delta=0.00025235168204840175
Number of particle pairs: 130816
Distance min=0.143911 max=1.987253 mean=0.803523
---------------- t = 10.5, dt = 0.01111610290154508 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.35 us   (1.7%)
   patch tree reduce : 1763.00 ns (0.3%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 821.00 ns  (0.1%)
   LB compute        : 601.76 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.81 us    (74.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9238517029451784e-17,-6.958740224674576e-17,-3.351811016238937e-18)
    sum a = (-3.68223518083105e-17,4.7895769381828266e-17,8.629815612115621e-17)
    sum e = 2.592001214171104
    sum de = -7.860465750519907e-19
Info: CFL hydro = 0.01110386966319711 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01110386966319711 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3461e+04 |  512 |      1 | 3.804e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1052.0878086615899 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.511116102901545, dt = 0.01110386966319711 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.1%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 418.85 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8875526142103638e-17,-6.909560814130633e-17,-1.8632556435249638e-18)
    sum a = (-8.153243705177893e-17,-2.801469993485295e-17,7.048463375458613e-17)
    sum e = 2.5920012073375127
    sum de = -1.633079522306291e-18
Info: CFL hydro = 0.011093609345402477 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011093609345402477 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6188e+04 |  512 |      1 | 3.163e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1263.835680826956 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.522219972564741, dt = 0.011093609345402477 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.1%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 406.92 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7722151871013558e-17,-7.006016860405806e-17,-1.1065367372387058e-18)
    sum a = (-1.988692413870674e-17,1.8844496275927102e-16,7.972333730676961e-17)
    sum e = 2.5920012008691864
    sum de = 6.030874584450618e-19
Info: CFL hydro = 0.011085464044748921 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011085464044748921 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5827e+04 |  512 |      1 | 3.235e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1234.5756047441107 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.533313581910145, dt = 0.011085464044748921 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.2%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 402.59 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (73.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7915356698150476e-17,-6.646099686216656e-17,-2.663884737796884e-19)
    sum a = (-1.9421512737882036e-16,-1.2198250222417162e-17,1.2783719395559333e-17)
    sum e = 2.5920011953789444
    sum de = 1.3417001884508117e-18
Info: CFL hydro = 0.011079537006951294 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011079537006951294 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6350e+04 |  512 |      1 | 3.131e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1274.4105885749852 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.544399045954894, dt = 0.011079537006951294 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (1.2%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 382.75 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4829934155691228e-17,-6.789978735516344e-17,-4.874030866408585e-19)
    sum a = (1.5947302072633062e-16,9.79797297982754e-17,-2.3963985093175544e-17)
    sum e = 2.592001191414781
    sum de = 2.710505431213761e-19
Info: CFL hydro = 0.011075916201469815 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011075916201469815 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6034e+04 |  512 |      1 | 3.193e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1249.0700235289137 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.555478582961845, dt = 0.011075916201469815 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.2%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 761.00 ns  (0.2%)
   LB compute        : 426.88 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.67 us    (77.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8629629089383926e-17,-6.624144592223824e-17,-9.54314752221741e-19)
    sum a = (8.763741685471894e-19,-1.7615596481501682e-16,-5.56517722530292e-17)
    sum e = 2.592001189409903
    sum de = -7.928228386300251e-19
Info: CFL hydro = 0.011074651015887848 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011074651015887848 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5730e+04 |  512 |      1 | 3.255e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1224.998317196501 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.566554499163315, dt = 0.011074651015887848 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1884.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 409.24 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7669459645430764e-17,-6.968546833324707e-17,-1.7037152938437217e-18)
    sum a = (-5.2850210779985595e-17,-5.02625285142555e-18,2.666226614489453e-17)
    sum e = 2.5920011896503676
    sum de = -3.7269449679189215e-19
Info: CFL hydro = 0.011075757593136552 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011075757593136552 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6007e+04 |  512 |      1 | 3.199e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1246.4559114525161 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.577629150179202, dt = 0.011075757593136552 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 392.85 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6726854276671864e-17,-6.867260666371111e-17,-9.016225266389456e-19)
    sum a = (-2.3644254888949106e-16,-1.7074842516458245e-17,-5.627529692242561e-17)
    sum e = 2.59200119225065
    sum de = -1.6127507315721878e-18
Info: CFL hydro = 0.011079215033140705 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011079215033140705 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5419e+04 |  512 |      1 | 3.321e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1200.758595498592 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.588704907772339, dt = 0.011079215033140705 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.5%)
   patch tree reduce : 1884.00 ns (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 388.99 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3091090711458975e-17,-6.904584326158925e-17,-2.0096229368105066e-18)
    sum a = (8.977218382728858e-17,4.3919335941493275e-18,-3.1029866176535136e-17)
    sum e = 2.592001197148536
    sum de = -1.328147661294743e-18
Info: CFL hydro = 0.011083810548419918 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011083810548419918 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5912e+04 |  512 |      1 | 3.218e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1239.5414937634735 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.59978412280548, dt = 0.011083810548419918 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.4%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 416.03 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.00 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.612382102833543e-17,-6.894045881042366e-17,-2.2935754857844602e-18)
    sum a = (7.65464352060069e-18,9.609012804195904e-17,-1.2177758801357185e-18)
    sum e = 2.5920012040715137
    sum de = -7.657177843178875e-19
Info: CFL hydro = 0.011088614599222434 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011088614599222434 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6060e+04 |  512 |      1 | 3.188e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1251.6031506768295 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.6108679333539, dt = 0.011088614599222434 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 387.56 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5637881614627426e-17,-6.739482019332832e-17,-2.217464493275978e-18)
    sum a = (-1.8598013754034249e-16,-2.9450563081984124e-17,1.449621672700019e-17)
    sum e = 2.5920012125749072
    sum de = 9.690056916589196e-19
Info: CFL hydro = 0.011095622518410168 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011095622518410168 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5612e+04 |  512 |      1 | 3.279e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1217.2389002096697 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.621956547953122, dt = 0.011095622518410168 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.2%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 424.32 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (74.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2651988831602346e-17,-6.848525652830561e-17,-1.8398368765992768e-18)
    sum a = (8.175271982817367e-17,-9.426053687588975e-18,4.2575318270898775e-17)
    sum e = 2.5920012221497655
    sum de = -5.251604272976662e-19
Info: CFL hydro = 0.011101438295002155 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011101438295002155 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6295e+04 |  512 |      1 | 3.142e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1271.2679196654356 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.633052170471531, dt = 0.011101438295002155 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 2.10 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 380.75 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5245617268622168e-17,-6.84955022388356e-17,-1.2638815775206646e-18)
    sum a = (6.288304837780145e-17,-2.2236119195939706e-17,-7.908517590804465e-17)
    sum e = 2.5920012320703725
    sum de = 9.825582188149884e-20
Info: CFL hydro = 0.011102121204988812 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011102121204988812 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6115e+04 |  512 |      1 | 3.177e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1257.8870682737006 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.644153608766533, dt = 0.011102121204988812 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.1%)
   patch tree reduce : 1954.00 ns (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 399.38 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5649590998090266e-17,-6.863162382159116e-17,-2.8541622190680903e-18)
    sum a = (-7.142723912334503e-17,1.1679231800426627e-16,9.863984629099321e-17)
    sum e = 2.592001241522147
    sum de = -2.0455845676191353e-19
Info: CFL hydro = 0.011104223422539113 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011104223422539113 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6031e+04 |  512 |      1 | 3.194e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1251.404080074049 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.655255729971522, dt = 0.011104223422539113 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.2%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 398.97 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.426202905774332e-17,-6.677715021566332e-17,-7.647691074169627e-19)
    sum a = (2.3162624162437194e-17,-6.494609537666119e-17,5.835956717881175e-17)
    sum e = 2.5920012499406098
    sum de = 2.896852679609707e-19
Info: CFL hydro = 0.01110763709033484 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01110763709033484 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6291e+04 |  512 |      1 | 3.143e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1271.9666668206955 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.66635995339406, dt = 0.01110763709033484 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 379.15 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.497630144897677e-17,-6.854673079148554e-17,-2.901731589385892e-19)
    sum a = (1.655004258638293e-16,-1.9592725879202798e-16,-8.369867299240497e-17)
    sum e = 2.5920012566844917
    sum de = 2.913793338554793e-19
Info: CFL hydro = 0.011112239020098166 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011112239020098166 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6147e+04 |  512 |      1 | 3.171e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1261.120642477181 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.677467590484396, dt = 0.011112239020098166 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (1.1%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 385.81 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7616767419847966e-17,-7.122671593154384e-17,-2.0765859734886426e-18)
    sum a = (1.6577559637520612e-17,-4.2431878323478945e-17,-5.613478432087148e-17)
    sum e = 2.592001261224132
    sum de = 3.049318610115481e-19
Info: CFL hydro = 0.011117892153040971 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011117892153040971 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6088e+04 |  512 |      1 | 3.183e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1256.993096708712 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.688579829504494, dt = 0.011117892153040971 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (1.1%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 392.36 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6996170096317265e-17,-7.110084005931827e-17,-2.4633615459956905e-18)
    sum a = (9.133758202897746e-17,-3.348883670373226e-17,-4.2013267864682293e-17)
    sum e = 2.592001263199867
    sum de = -2.236166980751353e-19
Info: CFL hydro = 0.011122068731277007 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011122068731277007 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6248e+04 |  512 |      1 | 3.151e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1270.1413341686873 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.699697721657536, dt = 0.011122068731277007 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (1.1%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 397.19 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.46 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.84071508035899e-17,-7.139650199175506e-17,-2.889290369456621e-18)
    sum a = (8.42197405565015e-18,-3.811404317155542e-18,-1.2196493814897734e-16)
    sum e = 2.5920012623619804
    sum de = -2.710505431213761e-20
Info: CFL hydro = 0.011117696292804595 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011117696292804595 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6421e+04 |  512 |      1 | 3.118e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1284.1272571188335 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.710819790388813, dt = 0.011117696292804595 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (1.1%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 393.88 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (73.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8196381901258717e-17,-7.116524166836391e-17,-4.73790928365303e-18)
    sum a = (4.640867768204715e-17,-1.2678627678980314e-16,-8.47056799702095e-17)
    sum e = 2.5920012585343195
    sum de = -4.336808689942018e-19
Info: CFL hydro = 0.011114544643580011 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011114544643580011 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6417e+04 |  512 |      1 | 3.119e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1283.3498297056472 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.721937486681618, dt = 0.011114544643580011 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.2%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 394.02 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8875526142103638e-17,-7.334904168418421e-17,-5.424371889162227e-18)
    sum a = (1.143274927853377e-16,5.810781543436062e-17,-6.416742137638209e-18)
    sum e = 2.592001252221134
    sum de = -2.710505431213761e-20
Info: CFL hydro = 0.011112271866629513 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011112271866629513 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5862e+04 |  512 |      1 | 3.228e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1239.6160235342766 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.733052031325197, dt = 0.011112271866629513 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.1%)
   patch tree reduce : 1684.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 411.62 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0532403902095984e-17,-7.151066848051779e-17,-5.1433466860539845e-18)
    sum a = (8.46529877446267e-17,-3.858827320180058e-17,1.5252642898699875e-16)
    sum e = 2.592001243862024
    sum de = 1.7957098481791167e-18
Info: CFL hydro = 0.011108455354967541 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011108455354967541 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6455e+04 |  512 |      1 | 3.112e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1285.6585951445375 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.744164303191827, dt = 0.011108455354967541 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (1.1%)
   patch tree reduce : 1614.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 392.17 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (73.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1369624819689292e-17,-7.256890401097227e-17,-2.4706799106599675e-18)
    sum a = (-1.413556771634461e-16,5.435203068865357e-17,-4.756351562607008e-17)
    sum e = 2.592001234002201
    sum de = -8.131516293641283e-19
Info: CFL hydro = 0.011105547233497036 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011105547233497036 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6150e+04 |  512 |      1 | 3.170e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1261.3988888671886 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.755272758546795, dt = 0.011105547233497036 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.2%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1153.00 ns (0.3%)
   LB compute        : 397.68 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8389586728395635e-17,-7.14448031985393e-17,-4.1802498962351106e-18)
    sum a = (1.4855841166602767e-16,-7.532060912474048e-18,-2.2435178714808046e-17)
    sum e = 2.5920012234114505
    sum de = 4.0657581468206416e-19
Info: CFL hydro = 0.011103647720482536 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011103647720482536 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6003e+04 |  512 |      1 | 3.199e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1249.6268398476145 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.766378305780291, dt = 0.011103647720482536 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.0%)
   patch tree reduce : 1613.00 ns (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 448.12 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1715051631843174e-17,-7.181364877761887e-17,-4.294416384997835e-18)
    sum a = (-7.684868366664155e-17,2.5953848445392503e-17,7.819526276486855e-17)
    sum e = 2.5920012128857106
    sum de = 1.1384122811097797e-18
Info: CFL hydro = 0.011102840908711328 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011102840908711328 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6315e+04 |  512 |      1 | 3.138e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1273.784006603182 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.777481953500773, dt = 0.011102840908711328 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 379.17 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9759584593548318e-17,-7.132770936391086e-17,-2.8161067228138492e-18)
    sum a = (-1.6381244505401377e-16,1.0093781279557623e-16,6.257494522543539e-17)
    sum e = 2.5920012032115123
    sum de = -1.1519648082658485e-18
Info: CFL hydro = 0.011102668436219688 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011102668436219688 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6891e+04 |  512 |      1 | 3.031e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1318.61504941152 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 10.788584794409484, dt = 0.011102668436219688 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (1.1%)
   patch tree reduce : 1984.00 ns (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 387.89 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.742356259271105e-17,-6.979670747614408e-17,-2.221855512074544e-18)
    sum a = (1.6898442484181673e-16,-2.608265166348378e-17,-7.901491960726759e-17)
    sum e = 2.59200119511964
    sum de = 1.0977546996415732e-18
Info: CFL hydro = 0.011103661282095202 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011103661282095202 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5602e+04 |  512 |      1 | 3.282e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1217.9816565460508 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.799687462845704, dt = 0.011103661282095202 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.2%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 399.84 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1170565300820955e-17,-7.080078710808291e-17,-3.954844264575374e-18)
    sum a = (-1.1935630706439577e-16,-6.917025546088195e-17,8.196568423990413e-18)
    sum e = 2.5920011892624215
    sum de = 8.131516293641283e-20
Info: CFL hydro = 0.011104538947286654 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011104538947286654 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6270e+04 |  512 |      1 | 3.147e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1270.2578200691798 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.8107911241278, dt = 0.011104538947286654 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.2%)
   patch tree reduce : 1714.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 377.08 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8190527209527295e-17,-7.191025119118732e-17,-3.3869391666274674e-18)
    sum a = (7.17880345012939e-17,9.77894523170042e-17,-1.408638830580067e-17)
    sum e = 2.5920011861110472
    sum de = 1.7414997395548415e-18
Info: CFL hydro = 0.011105334284412932 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011105334284412932 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6052e+04 |  512 |      1 | 3.190e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1253.3483095800398 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.821895663075086, dt = 0.011105334284412932 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.1%)
   patch tree reduce : 1984.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 443.24 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.004060979665656e-17,-6.977914340094982e-17,-3.597708068958649e-18)
    sum a = (-9.868082913311315e-18,-1.097827883288216e-17,-2.3418766925686897e-19)
    sum e = 2.5920011859664625
    sum de = 2.6630715861675203e-18
Info: CFL hydro = 0.011100170220051976 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011100170220051976 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5766e+04 |  512 |      1 | 3.247e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1231.079767579535 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.833000997359498, dt = 0.011100170220051976 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (0.8%)
   patch tree reduce : 1973.00 ns (0.3%)
   gen split merge   : 802.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.1%)
   LB compute        : 716.89 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (75.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9466850006977233e-17,-7.061929166440883e-17,-3.624054181750047e-18)
    sum a = (3.339369796309666e-17,4.0103723564655777e-17,9.706493421524076e-17)
    sum e = 2.5920011888312153
    sum de = 1.4907779871675686e-18
Info: CFL hydro = 0.011095592490173656 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011095592490173656 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4491e+04 |  512 |      1 | 3.533e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1131.0056915428283 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.84410116757955, dt = 0.011095592490173656 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1893.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 420.15 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.003475510492514e-17,-6.978792543854694e-17,-1.9203388879063254e-18)
    sum a = (3.8052568908375496e-17,6.599701254245139e-17,-1.6837215215809165e-16)
    sum e = 2.592001194651444
    sum de = -1.111307226797642e-18
Info: CFL hydro = 0.011092502877318992 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011092502877318992 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5072e+04 |  512 |      1 | 3.397e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1175.8855642194842 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.855196760069724, dt = 0.011092502877318992 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1974.00 ns (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 406.62 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.43 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.045043821785608e-17,-6.900046940067073e-17,-5.295568671070949e-18)
    sum a = (-8.760667972312897e-17,-7.487418888021957e-17,5.610185167988225e-17)
    sum e = 2.5920012030804442
    sum de = -5.421010862427522e-19
Info: CFL hydro = 0.011090931936622469 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011090931936622469 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5177e+04 |  512 |      1 | 3.374e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1183.7025475208552 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.866289262947042, dt = 0.011090931936622469 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.5%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.3%)
   LB compute        : 398.31 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.32 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8805269841326578e-17,-7.05548900553632e-17,-3.3810844748960454e-18)
    sum a = (-1.444557364352339e-16,-8.744274835464915e-17,-4.384285903075158e-17)
    sum e = 2.5920012135827846
    sum de = -5.624298769768554e-19
Info: CFL hydro = 0.011090892344040426 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011090892344040426 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5721e+04 |  512 |      1 | 3.257e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1225.9651683029115 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.877380194883665, dt = 0.011090892344040426 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.4%)
   patch tree reduce : 2.16 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.2%)
   LB compute        : 386.84 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 21.78 us   (5.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.99 us    (77.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.700787947978011e-17,-7.177559328136463e-17,-4.511039979060438e-18)
    sum a = (-1.9689328292771258e-17,-1.3186522186681148e-16,2.0836847872129916e-17)
    sum e = 2.592001225477722
    sum de = -1.5212711732687234e-18
Info: CFL hydro = 0.011092379680708751 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011092379680708751 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5349e+04 |  512 |      1 | 3.336e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1196.9322591431498 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.888471087227705, dt = 0.011092379680708751 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.5%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 382.94 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.50 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.75172376604138e-17,-7.335636004884849e-17,-3.834823084081229e-18)
    sum a = (-5.357042934250877e-18,-2.0754882187890012e-17,-6.229392002232714e-18)
    sum e = 2.5920012379822372
    sum de = 1.7279472123987727e-19
Info: CFL hydro = 0.011095368776127905 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011095368776127905 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5583e+04 |  512 |      1 | 3.286e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1215.3305894705359 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.899563466908413, dt = 0.011095368776127905 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 408.92 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7476254818293846e-17,-7.295824101111182e-17,-4.083647482666652e-18)
    sum a = (6.858185894187408e-17,-1.1839943088454151e-16,4.677898693405957e-17)
    sum e = 2.592001250263845
    sum de = 7.148958074826295e-19
Info: CFL hydro = 0.011099815987865636 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011099815987865636 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5279e+04 |  512 |      1 | 3.351e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1192.001992574227 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.91065883568454, dt = 0.011099815987865636 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1944.00 ns (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 401.35 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 us    (73.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.868232131496672e-17,-7.478636850424825e-17,-3.2669179861333217e-18)
    sum a = (2.275718676003624e-17,6.944249862639307e-17,-6.348827713553718e-17)
    sum e = 2.592001261505994
    sum de = -1.3103599694024026e-18
Info: CFL hydro = 0.011105659455592661 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011105659455592661 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5731e+04 |  512 |      1 | 3.255e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1227.7735446706752 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.921758651672405, dt = 0.011105659455592661 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.2%)
   patch tree reduce : 1934.00 ns (0.5%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 404.37 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8530099329949756e-17,-7.311339034199449e-17,-4.598860355031764e-18)
    sum a = (-4.48469386626904e-18,1.5318800915264942e-16,2.413421025526663e-16)
    sum e = 2.592001270955146
    sum de = -1.528470953320385e-18
Info: CFL hydro = 0.011112820179765955 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011112820179765955 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5574e+04 |  512 |      1 | 3.287e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1216.1581691720287 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.932864311127998, dt = 0.011112820179765955 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.2%)
   patch tree reduce : 2.15 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 386.21 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8535954021681178e-17,-7.10305837585412e-17,-2.3418766925686897e-19)
    sum a = (-8.52443116095003e-17,1.2829385991064423e-16,8.337081025544535e-18)
    sum e = 2.5920012779742647
    sum de = -9.605353621863766e-19
Info: CFL hydro = 0.011114692875296086 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011114692875296086 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5194e+04 |  512 |      1 | 3.370e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1187.2217327150315 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.943977131307765, dt = 0.011114692875296086 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1933.00 ns (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 389.26 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (81.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7072281088825747e-17,-6.971181444603846e-17,-1.4080533614069246e-18)
    sum a = (2.320741255418257e-16,-5.545564008002657e-17,-1.6561751969845772e-16)
    sum e = 2.5920012819230465
    sum de = 6.369687763352339e-19
Info: CFL hydro = 0.01111225235070245 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01111225235070245 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3642e+04 |  512 |      1 | 3.753e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1066.1623909541695 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.95509182418306, dt = 0.01111225235070245 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.5%)
   patch tree reduce : 1864.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 387.24 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1480863962586306e-17,-7.130575426991803e-17,-4.27685230980357e-18)
    sum a = (3.9583570796142275e-17,-5.114658696570018e-17,1.8360313269738527e-16)
    sum e = 2.592001282568159
    sum de = -2.0396553369883552e-18
Info: CFL hydro = 0.011111273350184135 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011111273350184135 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5717e+04 |  512 |      1 | 3.258e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1227.9870914523997 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.966204076533764, dt = 0.011111273350184135 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.4%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 1062.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 409.65 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.26 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.078415564654712e-17,-7.175071084150608e-17,-3.220080452281948e-19)
    sum a = (3.156264312409451e-17,3.323123026754971e-17,-1.1709383462843449e-19)
    sum e = 2.5920012800375294
    sum de = -8.876905287225068e-19
Info: CFL hydro = 0.011111783038938667 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011111783038938667 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5895e+04 |  512 |      1 | 3.221e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1241.8104668087656 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.977315349883948, dt = 0.011111783038938667 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1843.00 ns (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 376.91 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.103005269926683e-17,-7.085347933366571e-17,-1.3114509478384662e-18)
    sum a = (1.2823531299333001e-16,-1.4250319674280477e-17,-7.693064935088145e-17)
    sum e = 2.592001274552652
    sum de = -8.063753657860939e-19
Info: CFL hydro = 0.011113792534340517 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011113792534340517 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5976e+04 |  512 |      1 | 3.205e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1248.1943289903745 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.988427132922887, dt = 0.011113792534340517 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.2%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 1153.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 397.85 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (73.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.306748542180159e-17,-7.144041217974074e-17,-2.669739429528306e-18)
    sum a = (1.564959099809027e-16,7.17433924768418e-17,-8.468226120328382e-17)
    sum e = 2.592001266516892
    sum de = 4.811147140404426e-19
Info: CFL hydro = 0.01111729625465763 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01111729625465763 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5582e+04 |  512 |      1 | 3.286e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1217.673712464779 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.999540925457227, dt = 0.0004590745427730525 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.3%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 422.72 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.40 us    (72.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3155305797772917e-17,-7.075541324716438e-17,-2.7399957303053666e-18)
    sum a = (3.580143993764384e-17,-7.837090351681119e-17,9.154395991251007e-17)
    sum e = 2.592001132139039
    sum de = 1.8295911660692887e-19
Info: CFL hydro = 0.011118194978734888 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011118194978734888 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6656e+04 |  512 |      1 | 3.074e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.7622417486127 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 1343                                                    [SPH][rank=0]
Info: time since start : 767.640372133 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14986612838291608 max=0.1501529356171962 delta=0.0002868072342801231
Number of particle pairs: 130816
Distance min=0.143324 max=1.986289 mean=0.802986
---------------- t = 11, dt = 0.011118194978734888 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.62 us   (1.6%)
   patch tree reduce : 1452.00 ns (0.2%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.1%)
   LB compute        : 629.17 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.357098891070386e-17,-7.161751660461623e-17,-1.6510230682609261e-18)
    sum a = (-6.064289695406622e-17,1.2411946470614055e-17,5.761016663718977e-18)
    sum e = 2.592001259499713
    sum de = -1.6195269951502222e-18
Info: CFL hydro = 0.011122045576790989 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011122045576790989 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2134e+04 |  512 |      1 | 4.220e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 948.5448408184119 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.011118194978735, dt = 0.011122045576790989 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.1%)
   patch tree reduce : 2.18 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 434.10 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (72.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2370777105762408e-17,-7.1083275984124e-17,-2.02133232027335e-18)
    sum a = (1.466951560225027e-16,-1.0984572626493439e-16,2.4706799106599675e-17)
    sum e = 2.592001246699225
    sum de = 8.944667923005412e-19
Info: CFL hydro = 0.011127862894806086 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011127862894806086 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3338e+04 |  512 |      1 | 3.839e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.0776844039033 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.022240240555526, dt = 0.011127862894806086 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.3%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 371.85 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.512833691126204e-17,-7.282358310128911e-17,-1.7476254818293846e-18)
    sum a = (3.895711878088015e-17,4.7259071656036153e-17,-5.1474449702659794e-17)
    sum e = 2.592001235139867
    sum de = 2.15485181781494e-18
Info: CFL hydro = 0.011132947797879648 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011132947797879648 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7621e+04 |  512 |      1 | 2.906e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1378.74060275703 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 11.033368103450332, dt = 0.011132947797879648 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.3%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.2%)
   LB compute        : 380.97 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.496440554278223e-17,-7.140674770228505e-17,-2.7970789746867287e-18)
    sum a = (5.742281650178426e-17,-1.348335505746423e-16,-4.997564861941584e-17)
    sum e = 2.5920012241128294
    sum de = -1.1384122811097797e-18
Info: CFL hydro = 0.011134625093045566 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011134625093045566 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7311e+04 |  512 |      1 | 2.958e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1355.0978352430259 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.044501051248211, dt = 0.011134625093045566 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (1.1%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 384.77 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5696242009209946e-17,-7.396451615244993e-17,-3.2577700303029755e-18)
    sum a = (7.611099250848241e-19,3.3676186839137757e-17,4.648625234748849e-17)
    sum e = 2.5920012143846796
    sum de = 2.0938654456126304e-18
Info: CFL hydro = 0.011137984838415818 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011137984838415818 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7367e+04 |  512 |      1 | 2.948e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1359.6955563012673 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.055635676341257, dt = 0.011137984838415818 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.45 us    (1.1%)
   patch tree reduce : 1923.00 ns (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 376.24 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5555729407655826e-17,-7.250596607485949e-17,-2.125253098506086e-18)
    sum a = (1.3066501006187004e-16,4.703659337024213e-17,4.3699419083331746e-17)
    sum e = 2.5920012067877733
    sum de = -1.4433441421213278e-18
Info: CFL hydro = 0.011142613417492005 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011142613417492005 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7611e+04 |  512 |      1 | 2.907e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1379.2261981201837 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.066773661179672, dt = 0.011142613417492005 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.48 us    (1.2%)
   patch tree reduce : 1943.00 ns (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 358.44 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.802055462658437e-17,-7.202807686228219e-17,-1.7899805173238885e-18)
    sum a = (1.6381427464517984e-16,1.3263218648362774e-16,1.209813499380985e-16)
    sum e = 2.5920012019074146
    sum de = 8.131516293641283e-20
Info: CFL hydro = 0.011140326347965013 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011140326347965013 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7497e+04 |  512 |      1 | 2.926e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1370.8442378572938 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.077916274597165, dt = 0.011140326347965013 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.51 us    (1.0%)
   patch tree reduce : 601.00 ns  (0.2%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 692.00 ns  (0.2%)
   LB compute        : 352.68 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.42 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.00228591987306e-17,-7.021824528080645e-17,-5.744916261457566e-20)
    sum a = (1.0457064901492341e-16,2.993503882275927e-17,7.243424610114956e-17)
    sum e = 2.592001200039341
    sum de = 5.421010862427522e-20
Info: CFL hydro = 0.011135716322649149 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011135716322649149 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3834e+04 |  512 |      1 | 3.701e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1083.6269358969316 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.08905660094513, dt = 0.011135716322649149 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.92 us    (1.0%)
   patch tree reduce : 1142.00 ns (0.3%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 721.00 ns  (0.2%)
   LB compute        : 363.45 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0883498883249596e-17,-7.044767601303154e-17,5.825418272764616e-19)
    sum a = (5.738183365966432e-17,-2.8196195378527025e-17,-8.779695720440017e-17)
    sum e = 2.5920012014294125
    sum de = -1.1655173354219173e-18
Info: CFL hydro = 0.011132663664788446 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011132663664788446 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6460e+04 |  512 |      1 | 3.111e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1288.7847881848397 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.100192317267778, dt = 0.011132663664788446 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.86 us    (1.0%)
   patch tree reduce : 1302.00 ns (0.3%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 380.10 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1088413093849355e-17,-7.131380447104873e-17,-1.3959780597108672e-18)
    sum a = (-9.099947358148786e-17,1.3768478544784467e-16,2.71657696337968e-18)
    sum e = 2.5920012060708295
    sum de = 7.928228386300251e-19
Info: CFL hydro = 0.01113118415221389 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01113118415221389 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6478e+04 |  512 |      1 | 3.107e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1289.8327130919718 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.111324980932567, dt = 0.01113118415221389 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.54 us    (1.0%)
   patch tree reduce : 851.00 ns  (0.2%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 357.49 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.929102273230288e-17,-6.8638210349789e-17,-7.563529880530439e-19)
    sum a = (6.088879400678593e-17,-2.5049298572887845e-17,2.0415310067467552e-17)
    sum e = 2.5920012136785795
    sum de = 1.734723475976807e-18
Info: CFL hydro = 0.011131274014020727 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011131274014020727 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6687e+04 |  512 |      1 | 3.068e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1306.0354512369809 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.122456165084781, dt = 0.011131274014020727 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.86 us    (1.0%)
   patch tree reduce : 1273.00 ns (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 691.00 ns  (0.2%)
   LB compute        : 390.28 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 2.75 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0783969123815426e-17,-6.985049745642652e-17,-3.7652986197705964e-19)
    sum a = (-2.1830974528125323e-16,9.046962397979418e-17,-1.0778487477547394e-16)
    sum e = 2.5920012237744
    sum de = -3.5914196963582334e-19
Info: CFL hydro = 0.011131379252069864 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011131379252069864 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6469e+04 |  512 |      1 | 3.109e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1288.9733740595593 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.133587439098802, dt = 0.011131379252069864 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.11 us    (1.1%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 821.00 ns  (0.2%)
   LB compute        : 367.00 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 2.87 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6744231829134435e-17,-6.801249017099331e-17,-2.3813958617557863e-18)
    sum a = (7.314266380065159e-17,2.639295032524913e-17,1.0396761576658698e-16)
    sum e = 2.5920012356821087
    sum de = 3.5914196963582334e-19
Info: CFL hydro = 0.01112513587872393 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01112513587872393 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6678e+04 |  512 |      1 | 3.070e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1305.3784749816034 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.144718818350873, dt = 0.01112513587872393 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.45 us    (1.1%)
   patch tree reduce : 1223.00 ns (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.2%)
   LB compute        : 380.27 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.929687742403431e-17,-6.822801601035627e-17,7.09881372434884e-20)
    sum a = (6.700109217439021e-17,1.3064708006844255e-16,7.11491412661025e-18)
    sum e = 2.592001248494487
    sum de = -2.6393546636444e-18
Info: CFL hydro = 0.011120481048473449 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011120481048473449 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5957e+04 |  512 |      1 | 3.209e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1248.201751674904 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.155843954229596, dt = 0.011120481048473449 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (1.1%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 409.11 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.982965437159368e-17,-6.624876428690252e-17,-4.661798291144547e-19)
    sum a = (-3.320781150062402e-17,-2.902682976792248e-17,-7.858606343794094e-17)
    sum e = 2.5920012614789836
    sum de = -2.6664597179565375e-18
Info: CFL hydro = 0.01111741803600037 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01111741803600037 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5952e+04 |  512 |      1 | 3.210e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1247.270173088463 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.16696443527807, dt = 0.01111741803600037 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.81 us    (1.0%)
   patch tree reduce : 902.00 ns  (0.2%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 370.99 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 2.71 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.88109380103263e-17,-6.742665507961792e-17,-1.754212010027234e-18)
    sum a = (8.815116605415119e-17,-1.1587898609416446e-17,6.729089941509558e-17)
    sum e = 2.592001273787569
    sum de = -9.944166800765486e-19
Info: CFL hydro = 0.011115934961489847 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011115934961489847 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5835e+04 |  512 |      1 | 3.233e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1237.8081257261256 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.17808185331407, dt = 0.011115934961489847 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.79 us    (1.0%)
   patch tree reduce : 1132.00 ns (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 363.74 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.063174713879846e-17,-6.746214914823966e-17,-3.296923281256858e-19)
    sum a = (-1.0370708198453871e-16,3.8635110735651957e-17,1.1694746733514895e-16)
    sum e = 2.59200128463397
    sum de = -1.6025863362051362e-18
Info: CFL hydro = 0.011116002924949311 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011116002924949311 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6660e+04 |  512 |      1 | 3.073e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1302.1054485690115 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.18919778827556, dt = 0.011116002924949311 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.98 us    (1.0%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1233.00 ns (0.3%)
   LB compute        : 379.93 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8401109589126784e-17,-6.660333905488674e-17,1.1541061075565073e-18)
    sum a = (2.486458304876149e-16,-8.270044805219757e-17,3.0690294056112675e-17)
    sum e = 2.5920012933194094
    sum de = -1.5619287547369298e-18
Info: CFL hydro = 0.01111757712146246 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01111757712146246 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6218e+04 |  512 |      1 | 3.157e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1267.5598734435202 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.200313791200509, dt = 0.01111757712146246 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.11 us    (1.1%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 372.44 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.326635841793823e-17,-6.838353125947217e-17,1.1017798002069256e-18)
    sum a = (1.4633801982688597e-17,-7.186634100320166e-17,-5.642751890744258e-17)
    sum e = 2.5920012993015913
    sum de = 1.3552527156068805e-18
Info: CFL hydro = 0.011120457784642126 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011120457784642126 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6108e+04 |  512 |      1 | 3.179e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1259.1523357459819 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.211431368321971, dt = 0.011120457784642126 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.73 us    (0.9%)
   patch tree reduce : 1332.00 ns (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 396.36 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.214225760550526e-17,-6.906816427381529e-17,6.952446431063297e-21)
    sum a = (-1.2389698642034653e-16,-1.1193585121305193e-16,9.402634920663289e-18)
    sum e = 2.5920013022016954
    sum de = -4.912791094074942e-19
Info: CFL hydro = 0.01111640215002614 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01111640215002614 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6718e+04 |  512 |      1 | 3.063e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1307.1958057274464 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.222551826106614, dt = 0.01111640215002614 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.60 us    (1.0%)
   patch tree reduce : 792.00 ns  (0.2%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 622.00 ns  (0.2%)
   LB compute        : 364.51 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.81 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.993211147689356e-17,-7.045828764179473e-17,5.1960389116367795e-19)
    sum a = (3.549699596760991e-17,-1.0105783397607037e-16,6.44133184291018e-17)
    sum e = 2.5920013016363357
    sum de = 1.6635727084074459e-18
Info: CFL hydro = 0.011113147293105982 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011113147293105982 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6459e+04 |  512 |      1 | 3.111e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1286.462044901426 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.23366822825664, dt = 0.011113147293105982 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.28 us    (1.1%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 761.00 ns  (0.2%)
   LB compute        : 370.70 us  (95.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.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.124356242473203e-17,-7.153628275684276e-17,1.4883724135973665e-18)
    sum a = (1.187346119861654e-16,-3.6568404554460087e-17,-6.885117476151947e-18)
    sum e = 2.592001297911594
    sum de = 2.1480755542369057e-18
Info: CFL hydro = 0.011109077696026617 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011109077696026617 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5433e+04 |  512 |      1 | 3.318e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1205.916391386751 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.244781375549746, dt = 0.011109077696026617 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (1.1%)
   patch tree reduce : 1092.00 ns (0.3%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 402.74 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.282725653808161e-17,-7.142943463274431e-17,1.0326212541295066e-18)
    sum a = (7.183414019867884e-17,7.243424610114956e-17,1.155364866278763e-16)
    sum e = 2.5920012912745434
    sum de = 1.1519648082658485e-18
Info: CFL hydro = 0.011106077413109029 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011106077413109029 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6346e+04 |  512 |      1 | 3.132e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1276.8009167095931 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.255890453245772, dt = 0.011106077413109029 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.74 us    (1.0%)
   patch tree reduce : 1353.00 ns (0.4%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 702.00 ns  (0.2%)
   LB compute        : 362.65 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 2.79 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3398088981895225e-17,-7.026508281465782e-17,3.0751768319292603e-18)
    sum a = (1.2242361665431093e-16,-1.7160101464797073e-17,-3.8558999743143474e-17)
    sum e = 2.5920012822648073
    sum de = 6.776263578034403e-19
Info: CFL hydro = 0.01110419592888599 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01110419592888599 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6360e+04 |  512 |      1 | 3.130e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1277.5197001245697 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.266996530658881, dt = 0.01110419592888599 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.05 us    (1.1%)
   patch tree reduce : 1062.00 ns (0.3%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 361.68 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.508424020054468e-17,-7.095666827543201e-17,1.7278658972358363e-18)
    sum a = (7.499000200103176e-17,-6.629267447488818e-17,-7.330074047739999e-18)
    sum e = 2.5920012715061
    sum de = -1.3484764520288461e-18
Info: CFL hydro = 0.011103466483333931 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011103466483333931 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6344e+04 |  512 |      1 | 3.133e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1276.1121170154076 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.278100726587766, dt = 0.011103466483333931 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.04 us    (1.0%)
   patch tree reduce : 1052.00 ns (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 691.00 ns  (0.2%)
   LB compute        : 386.07 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.558188899771553e-17,-7.186414549380238e-17,1.8932609386485e-18)
    sum a = (-1.2449270130401867e-17,3.495836432831911e-17,-4.355890648177763e-18)
    sum e = 2.5920012597413002
    sum de = -8.605854744103691e-19
Info: CFL hydro = 0.011103905946038254 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011103905946038254 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5740e+04 |  512 |      1 | 3.253e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1228.862783399919 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.2892041930711, dt = 0.011103905946038254 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.24 us    (1.7%)
   patch tree reduce : 1804.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 412.20 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5028620629096174e-17,-7.091714910624491e-17,1.7966585250800414e-18)
    sum a = (1.9984551123328197e-16,9.6860020004641e-17,2.6217309573306478e-17)
    sum e = 2.592001247769296
    sum de = -7.250602028496811e-19
Info: CFL hydro = 0.011105514810512014 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011105514810512014 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6725e+04 |  512 |      1 | 3.061e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1305.767338375615 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.300308099017139, dt = 0.011105514810512014 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.47 us    (1.1%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 378.94 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8298465961095206e-17,-6.953178267529725e-17,2.2877207940530387e-18)
    sum a = (-1.4212264178026236e-17,1.5444676787490508e-17,-8.478764565444941e-17)
    sum e = 2.5920012363950247
    sum de = -1.6940658945086007e-18
Info: CFL hydro = 0.011108277367223394 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011108277367223394 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6106e+04 |  512 |      1 | 3.179e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1257.6335797149707 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.31141361382765, dt = 0.011108277367223394 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.36 us    (1.1%)
   patch tree reduce : 1272.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 379.87 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.709825415615375e-17,-6.984647235586117e-17,8.225841882647522e-19)
    sum a = (-6.09407543959023e-17,5.76218760206526e-17,1.1132110858125267e-16)
    sum e = 2.592001226375686
    sum de = -1.0570971181733668e-18
Info: CFL hydro = 0.011112162215799228 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011112162215799228 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5898e+04 |  512 |      1 | 3.220e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1241.7328717008743 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.322521891194873, dt = 0.011112162215799228 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.43 us    (1.1%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 397.90 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.607661044902066e-17,-6.896680492321505e-17,3.155678843236309e-18)
    sum a = (-6.941176149480311e-17,8.91786644530157e-17,-6.666152005396774e-17)
    sum e = 2.59200121837313
    sum de = -6.640738306473715e-19
Info: CFL hydro = 0.011113193670193967 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011113193670193967 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3531e+04 |  512 |      1 | 3.784e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1057.2233270244358 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.333634053410671, dt = 0.011113193670193967 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.35 us    (1.1%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 389.96 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.523938953142736e-17,-6.78192853438564e-17,1.375852556884105e-18)
    sum a = (5.534879195592812e-18,-1.4753237694009603e-16,2.941397125866274e-17)
    sum e = 2.5920012128672125
    sum de = 1.3010426069826053e-18
Info: CFL hydro = 0.011106328624158583 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011106328624158583 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6398e+04 |  512 |      1 | 3.122e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1281.3346831596364 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.344747247080866, dt = 0.011106328624158583 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.18 us    (1.0%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 390.74 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.575460240379247e-17,-7.068076592758876e-17,2.237955914335954e-18)
    sum a = (-2.4550917939250572e-17,-1.158877681317616e-16,-1.3678901761293715e-16)
    sum e = 2.5920012101612273
    sum de = -1.700842158086635e-18
Info: CFL hydro = 0.011101449563899522 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011101449563899522 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6356e+04 |  512 |      1 | 3.130e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1277.2669133994054 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.355853575705025, dt = 0.011101449563899522 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.21 us    (1.1%)
   patch tree reduce : 1422.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 369.62 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5227680147964514e-17,-7.167020883019903e-17,-1.6685871434551912e-19)
    sum a = (5.806756442870709e-17,-5.5149000600593354e-17,-7.541428419244322e-17)
    sum e = 2.592001210532099
    sum de = 4.54009659728305e-19
Info: CFL hydro = 0.011098587478232056 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011098587478232056 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6008e+04 |  512 |      1 | 3.198e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1249.5558552803764 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.366955025268924, dt = 0.011098587478232056 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.2%)
   patch tree reduce : 1874.00 ns (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 396.81 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6275669967889e-17,-7.19702617814344e-17,-6.425524175235342e-19)
    sum a = (-1.1419356671198144e-16,9.240752694289478e-17,-1.05647912293505e-16)
    sum e = 2.592001213926404
    sum de = 1.3891340334970526e-18
Info: CFL hydro = 0.011097746699620607 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011097746699620607 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5673e+04 |  512 |      1 | 3.267e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1223.0782148363394 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.378053612747156, dt = 0.011097746699620607 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.2%)
   patch tree reduce : 1904.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 406.77 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.87 us    (76.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.389866512493178e-17,-7.013774326949939e-17,-2.006695590944796e-18)
    sum a = (1.1195634263411191e-17,-1.888138083383506e-19,4.5968112129257665e-17)
    sum e = 2.5920012201083327
    sum de = -2.0125502826762176e-18
Info: CFL hydro = 0.01109890322020861 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01109890322020861 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6224e+04 |  512 |      1 | 3.156e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1266.0096102742452 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.389151359446776, dt = 0.01109890322020861 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (1.2%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 376.62 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.483541580195926e-17,-7.063100104787168e-17,-7.186634100320166e-19)
    sum a = (-4.8894360240268884e-17,1.3875619403469486e-18,-3.787107346470142e-17)
    sum e = 2.592001228680083
    sum de = -6.844026213814747e-19
Info: CFL hydro = 0.011102006380957541 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011102006380957541 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6356e+04 |  512 |      1 | 3.130e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1276.4378801380183 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.400250262666985, dt = 0.011102006380957541 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (1.0%)
   patch tree reduce : 1333.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 417.83 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.406845118514301e-17,-7.051976190497466e-17,-1.5339292336324916e-18)
    sum a = (-1.8779655565001607e-17,-2.6158762655992262e-17,4.842561898352193e-17)
    sum e = 2.5920012391064176
    sum de = -1.345088320239829e-18
Info: CFL hydro = 0.011106979193758275 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011106979193758275 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6298e+04 |  512 |      1 | 3.141e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1272.2756168847686 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.411352269047942, dt = 0.011106979193758275 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.2%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 393.56 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4062596493411587e-17,-7.107595761945972e-17,-5.40095312223654e-19)
    sum a = (-1.5303304278088333e-16,8.436610784978703e-18,1.5618853866500305e-17)
    sum e = 2.592001250760039
    sum de = 4.811147140404426e-19
Info: CFL hydro = 0.011113719837902864 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011113719837902864 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6037e+04 |  512 |      1 | 3.193e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1252.4317599892133 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.422459248241701, dt = 0.011113719837902864 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.48 us    (1.0%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 417.00 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1574352507557355e-17,-7.07371173355037e-17,-5.40095312223654e-19)
    sum a = (1.8021253434842565e-16,-2.680277874644865e-17,1.9209243570794677e-17)
    sum e = 2.592001262952464
    sum de = 1.9837511624695714e-18
Info: CFL hydro = 0.011122103677972908 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011122103677972908 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6001e+04 |  512 |      1 | 3.200e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1250.4001174490884 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.433572968079604, dt = 0.011122103677972908 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.2%)
   patch tree reduce : 1934.00 ns (0.5%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 389.76 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (61.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.553212411799844e-17,-7.0961791130697e-17,-2.8102520310824276e-19)
    sum a = (-5.652119397514533e-17,4.269241210552721e-17,-6.5338359722666435e-18)
    sum e = 2.5920012749818824
    sum de = -8.12304596416874e-19
Info: CFL hydro = 0.01113198514050194 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01113198514050194 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6992e+04 |  512 |      1 | 3.013e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1328.846930591483 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.444695071757577, dt = 0.01113198514050194 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.93 us    (1.0%)
   patch tree reduce : 1323.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 395.45 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.348883670373226e-17,-7.029728361918064e-17,-4.713026843794487e-19)
    sum a = (4.277950064503211e-17,1.1334683192032458e-16,-1.0187163612673799e-17)
    sum e = 2.5920012861785584
    sum de = 4.1705784740433613e-19
Info: CFL hydro = 0.011130466555609913 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011130466555609913 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6332e+04 |  512 |      1 | 3.135e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1278.2977731004066 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.455827056898078, dt = 0.011130466555609913 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.36 us    (0.5%)
   patch tree reduce : 741.00 ns  (0.1%)
   gen split merge   : 591.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 511.00 ns  (0.1%)
   LB compute        : 665.40 us  (98.2%)
   LB move op cnt    : 0
   LB apply          : 2.52 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4525117140193905e-17,-6.857600425014265e-17,-6.35234052859257e-19)
    sum a = (-7.563090778650583e-17,1.1531400834208228e-16,4.927894030337665e-17)
    sum e = 2.59200129565428
    sum de = 2.710505431213761e-20
Info: CFL hydro = 0.011127272783455757 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011127272783455757 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5382e+04 |  512 |      1 | 3.329e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1203.8137798512435 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.466957523453688, dt = 0.011127272783455757 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.61 us    (0.8%)
   patch tree reduce : 901.00 ns  (0.2%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 422.10 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.85 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.297947852309857e-17,-6.73574965335405e-17,2.8102520310824276e-19)
    sum a = (1.2622715372945237e-16,-1.319179140923943e-16,7.557821556092304e-17)
    sum e = 2.592001303093807
    sum de = -1.1773757966834775e-18
Info: CFL hydro = 0.011125945288232039 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011125945288232039 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6862e+04 |  512 |      1 | 3.036e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1319.2880204772516 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.478084796237145, dt = 0.011125945288232039 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.84 us    (1.0%)
   patch tree reduce : 962.00 ns  (0.2%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 722.00 ns  (0.2%)
   LB compute        : 384.08 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.60 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5570179614252684e-17,-7.021861119903966e-17,1.3026689102413336e-18)
    sum a = (-7.509081247428218e-17,1.806757868316744e-17,4.6369158512860054e-18)
    sum e = 2.5920013082555333
    sum de = 7.555533889508359e-19
Info: CFL hydro = 0.011126520933221463 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011126520933221463 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6247e+04 |  512 |      1 | 3.151e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1271.0019362215387 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.489210741525376, dt = 0.010789258474623864 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.85 us    (1.0%)
   patch tree reduce : 1083.00 ns (0.3%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 370.05 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 2.95 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3500546087195104e-17,-6.930198602483894e-17,9.352870040946204e-19)
    sum a = (3.039755946954159e-17,-1.7095699855751435e-17,-7.592949706480834e-17)
    sum e = 2.5920013025549102
    sum de = 5.793705359219414e-19
Info: CFL hydro = 0.011128971756325403 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011128971756325403 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6180e+04 |  512 |      1 | 3.164e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1227.4467314945093 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 1388                                                    [SPH][rank=0]
Info: time since start : 770.0417926920001 (s)                                        [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14985158104229596 max=0.1501276834967836 delta=0.00027610245448764226
Number of particle pairs: 130816
Distance min=0.141374 max=1.987516 mean=0.802571
---------------- t = 11.5, dt = 0.011128971756325403 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.15 us   (1.7%)
   patch tree reduce : 1572.00 ns (0.3%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 587.96 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (73.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.436996780931123e-17,-6.952611094268244e-17,-3.0005295123536336e-19)
    sum a = (-7.207418255966713e-17,1.140259761611695e-16,-3.6931395441808235e-17)
    sum e = 2.592001311149196
    sum de = -2.6122496093322622e-18
Info: CFL hydro = 0.011133265902010114 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011133265902010114 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3018e+04 |  512 |      1 | 3.933e-02 | 0.0% |   1.2% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1018.6611185197044 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.511128971756325, dt = 0.011133265902010114 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.1%)
   patch tree reduce : 1883.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 401.25 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (72.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3137555199846956e-17,-6.743836446308077e-17,-4.544704456516113e-19)
    sum a = (3.749344584802472e-17,-5.564299021543207e-17,-1.313558636861778e-16)
    sum e = 2.592001309178924
    sum de = -2.1751806085490433e-18
Info: CFL hydro = 0.011139477707295486 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011139477707295486 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5988e+04 |  512 |      1 | 3.202e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1251.5457369585415 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.522262237658335, dt = 0.011139477707295486 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.1%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 411.44 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4062596493411587e-17,-6.908353283961028e-17,-2.4428701249357144e-18)
    sum a = (8.44890563761469e-17,-8.52443116095003e-17,1.5397839253639135e-17)
    sum e = 2.592001305093398
    sum de = 5.421010862427522e-20
Info: CFL hydro = 0.011135010970121886 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011135010970121886 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5681e+04 |  512 |      1 | 3.265e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1228.2134489756277 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.533401715365631, dt = 0.011135010970121886 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.3%)
   patch tree reduce : 2.11 us    (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 459.19 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.35 us    (74.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.515742384718745e-17,-7.03360709519013e-17,-1.589548805080998e-18)
    sum a = (5.087727114605478e-18,1.545638617095335e-16,2.1779453240888814e-18)
    sum e = 2.5920012990101853
    sum de = 1.1384122811097797e-18
Info: CFL hydro = 0.011126392210685059 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011126392210685059 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5650e+04 |  512 |      1 | 3.272e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1225.2565045476604 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.544536726335753, dt = 0.011126392210685059 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1903.00 ns (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 394.45 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.491152679446774e-17,-6.718917414626213e-17,-1.4834325174489793e-18)
    sum a = (-5.199551726675633e-17,9.50801937182888e-18,-4.7130268437944877e-17)
    sum e = 2.592001291585852
    sum de = 1.4094628242311558e-18
Info: CFL hydro = 0.011118675441533084 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011118675441533084 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6156e+04 |  512 |      1 | 3.169e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1263.954559323541 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.555663118546438, dt = 0.011118675441533084 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.2%)
   patch tree reduce : 1824.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 390.38 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.41 us    (61.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.381084474896046e-17,-6.795101590781338e-17,-2.243078769600948e-18)
    sum a = (2.893388653668616e-17,-1.4308866591594693e-17,-1.1966989899026004e-17)
    sum e = 2.5920012834600237
    sum de = -2.846030702774449e-19
Info: CFL hydro = 0.011111944106514442 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011111944106514442 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6008e+04 |  512 |      1 | 3.198e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1251.5147593129425 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.566781793987971, dt = 0.011111944106514442 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1894.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 412.36 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.43 us    (74.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.473588604252509e-17,-6.814861175374886e-17,-2.2306375496716766e-18)
    sum a = (1.848267632692524e-16,-8.695388159507545e-17,3.464806566655376e-17)
    sum e = 2.5920012751539305
    sum de = -7.453889935837843e-20
Info: CFL hydro = 0.011105810779771737 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011105810779771737 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6229e+04 |  512 |      1 | 3.155e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1268.0233642243563 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.577893738094486, dt = 0.011105810779771737 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.37 us    (1.0%)
   patch tree reduce : 2.13 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 403.90 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.754906541947323e-17,-6.95727655174172e-17,-1.6444365400630766e-18)
    sum a = (6.890386698710226e-17,8.678995022659563e-17,8.067179736725994e-17)
    sum e = 2.5920012671577486
    sum de = -5.827586677109586e-19
Info: CFL hydro = 0.011100814510511337 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011100814510511337 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6391e+04 |  512 |      1 | 3.124e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1279.9121793995555 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.588999548874257, dt = 0.011100814510511337 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.44 us    (1.1%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 385.79 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (74.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.753150134427896e-17,-6.778708453933358e-17,-3.593317050160083e-19)
    sum a = (4.78913783630297e-17,-7.360518444743392e-17,6.377515703037684e-17)
    sum e = 2.592001259919055
    sum de = -1.748276003132876e-18
Info: CFL hydro = 0.011097036841407197 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011097036841407197 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6514e+04 |  512 |      1 | 3.100e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1288.976742961249 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.600100363384769, dt = 0.011097036841407197 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.2%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 419.30 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (73.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.800573137452412e-17,-6.941322516773596e-17,1.6576095964587756e-19)
    sum a = (1.8026595841047487e-17,1.3433004708574002e-16,-5.129295425898572e-17)
    sum e = 2.5920012538012376
    sum de = -1.212951180468158e-18
Info: CFL hydro = 0.011094526036206878 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011094526036206878 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6185e+04 |  512 |      1 | 3.163e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1262.8467604868185 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.611197400226176, dt = 0.011094526036206878 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.70 us    (0.9%)
   patch tree reduce : 932.00 ns  (0.2%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 402.15 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.808769705876402e-17,-6.677275919686476e-17,-1.0549422663555518e-18)
    sum a = (-7.051390721324324e-17,6.608776026428842e-17,1.1350490859707295e-16)
    sum e = 2.5920012490631215
    sum de = 1.6534083130403943e-18
Info: CFL hydro = 0.011093323794549546 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011093323794549546 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6452e+04 |  512 |      1 | 3.112e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1283.3723760897583 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.622291926262383, dt = 0.011093323794549546 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.32 us    (1.0%)
   patch tree reduce : 1844.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 419.77 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.52 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.682308364477693e-17,-6.655320825693645e-17,1.1361761141290282e-18)
    sum a = (6.488169376761554e-17,5.4565726936850464e-17,-1.0166672191613824e-16)
    sum e = 2.592001245866161
    sum de = -1.565316886525947e-18
Info: CFL hydro = 0.011093458155514092 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011093458155514092 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6446e+04 |  512 |      1 | 3.113e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1282.7947340478725 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.633385250056932, dt = 0.011093458155514092 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.1%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 399.78 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8114043171555425e-17,-6.585942728676298e-17,-1.1636199816200676e-18)
    sum a = (1.3047765992646454e-16,4.9706332799770434e-17,-1.3148832608660122e-16)
    sum e = 2.592001244263544
    sum de = 4.1335207826009857e-19
Info: CFL hydro = 0.011094941319981481 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011094941319981481 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6052e+04 |  512 |      1 | 3.190e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1252.0520276644306 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.644478708212446, dt = 0.011094941319981481 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.92 us    (1.0%)
   patch tree reduce : 1222.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 383.12 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0005108600804637e-17,-6.558718412125186e-17,-2.7762216353935386e-18)
    sum a = (-6.0478965585586405e-18,2.530397766320469e-17,1.0054042559430598e-16)
    sum e = 2.592001244207901
    sum de = 2.0057740190981832e-18
Info: CFL hydro = 0.01109776981994733 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01109776981994733 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6151e+04 |  512 |      1 | 3.170e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1259.9945284469775 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.655573649532428, dt = 0.01109776981994733 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.50 us    (1.1%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 385.09 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9080067307240006e-17,-6.517150100832092e-17,-3.7909128960955664e-19)
    sum a = (-8.937186928015261e-17,-4.332471881252076e-17,7.79537567309474e-17)
    sum e = 2.5920012455725283
    sum de = 1.0537089863843496e-18
Info: CFL hydro = 0.011101914254125534 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011101914254125534 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6160e+04 |  512 |      1 | 3.168e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1261.0151928202374 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.666671419352376, dt = 0.011101914254125534 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.2%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 409.53 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (73.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.759297560745889e-17,-6.623705490343967e-17,4.713026843794487e-19)
    sum a = (-1.1348734452187868e-16,-3.168559165045437e-17,-1.5201707080636505e-17)
    sum e = 2.5920012481538883
    sum de = -9.825582188149884e-19
Info: CFL hydro = 0.011107333141306753 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011107333141306753 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5776e+04 |  512 |      1 | 3.245e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1231.4883404495372 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.6777733336065, dt = 0.011107333141306753 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.3%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 379.20 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.617906755432054e-17,-6.647416991856225e-17,-3.0444397003392963e-19)
    sum a = (8.027367832952326e-17,1.8489116487829805e-17,9.835882108788496e-18)
    sum e = 2.5920012517076922
    sum de = -1.5077186461126546e-19
Info: CFL hydro = 0.011113970584377391 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011113970584377391 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6257e+04 |  512 |      1 | 3.149e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1269.6341666523565 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.688880666747808, dt = 0.011113970584377391 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.2%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 375.01 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8257483118975255e-17,-6.597944846725712e-17,-1.1233689759665432e-19)
    sum a = (-4.2668993338601526e-17,4.255189950397309e-17,6.529152218881506e-17)
    sum e = 2.5920012559598793
    sum de = 1.3417001884508117e-18
Info: CFL hydro = 0.011121753754265391 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011121753754265391 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5838e+04 |  512 |      1 | 3.233e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1237.6879905786252 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.699994637332185, dt = 0.011121753754265391 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.2%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 414.96 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.696359624633105e-17,-6.547301763248913e-17,8.92474570808599e-19)
    sum a = (1.0245710529988016e-18,-6.487583907588413e-17,2.1744325090500284e-17)
    sum e = 2.592001260628085
    sum de = 1.918635504649397e-18
Info: CFL hydro = 0.011122581992608854 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011122581992608854 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4753e+04 |  512 |      1 | 3.471e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1153.6563721267705 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.71111639108645, dt = 0.011122581992608854 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 385.87 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.48 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.732073244194778e-17,-6.668201147502773e-17,8.427096910915144e-19)
    sum a = (1.5398424722812275e-16,-2.393397979805201e-17,-3.940793004419962e-17)
    sum e = 2.5920012653193765
    sum de = 1.1240127210064565e-18
Info: CFL hydro = 0.011118754297285746 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011118754297285746 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6278e+04 |  512 |      1 | 3.145e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1273.0546158816078 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.72223897307906, dt = 0.011118754297285746 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.2%)
   patch tree reduce : 1853.00 ns (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.2%)
   LB compute        : 384.02 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9885087420310494e-17,-6.669372085849056e-17,8.782037597132585e-20)
    sum a = (-1.440781088185572e-16,-5.0962164176160397e-17,-4.445467431668515e-17)
    sum e = 2.5920012698199884
    sum de = 5.251604272976662e-20
Info: CFL hydro = 0.011115679544619336 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011115679544619336 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5547e+04 |  512 |      1 | 3.293e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1215.478494935567 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.733357727376346, dt = 0.011115679544619336 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (1.1%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 394.42 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (75.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.661524208831146e-17,-6.753386912194958e-17,-4.456884080544788e-19)
    sum a = (-1.0614556109067586e-17,-1.1422210833417211e-16,7.698919626819568e-18)
    sum e = 2.5920012740365435
    sum de = 9.012430558785756e-19
Info: CFL hydro = 0.011113389770830377 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011113389770830377 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6472e+04 |  512 |      1 | 3.108e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1287.405022465302 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.744473406920966, dt = 0.011113389770830377 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.2%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 388.70 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7133382306542285e-17,-6.901803347586499e-17,-3.659182332138578e-20)
    sum a = (1.7831634606391143e-16,-1.9204486633762895e-17,-1.5585189389044628e-17)
    sum e = 2.5920012778422827
    sum de = -9.520650327138336e-19
Info: CFL hydro = 0.01111190621636829 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01111190621636829 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6759e+04 |  512 |      1 | 3.055e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1309.603829667959 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.755586796691796, dt = 0.01111190621636829 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.2%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 377.62 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.018074935274729e-17,-6.886873883671374e-17,-3.70309252012424e-19)
    sum a = (5.2490238718061466e-17,-4.4577622843045007e-17,-7.274454476291492e-17)
    sum e = 2.5920012811639475
    sum de = -1.8228149024912543e-18
Info: CFL hydro = 0.011111239271053347 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011111239271053347 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5701e+04 |  512 |      1 | 3.261e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1226.7657570673393 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.766698702908165, dt = 0.011111239271053347 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 388.33 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.99933992173418e-17,-6.948055412264731e-17,-1.4929463915125396e-18)
    sum a = (-1.2687409716577446e-16,4.27685230980357e-18,1.39868585463665e-17)
    sum e = 2.592001283986859
    sum de = -2.2260025853843013e-18
Info: CFL hydro = 0.011110456420194715 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011110456420194715 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5698e+04 |  512 |      1 | 3.262e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1226.4362575935318 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.77780994217922, dt = 0.011110456420194715 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.1%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 416.56 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7812526547387206e-17,-6.913512731049343e-17,-8.503939739890054e-19)
    sum a = (-8.251895260852348e-17,-3.720656595318506e-17,1.82724928937672e-17)
    sum e = 2.592001286320026
    sum de = 1.4907779871675686e-19
Info: CFL hydro = 0.011106528479708272 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011106528479708272 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5738e+04 |  512 |      1 | 3.253e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1229.423935844786 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.788920398599414, dt = 0.011106528479708272 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 387.66 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.708069008095949e-17,-6.968254098738136e-17,-6.63775675049938e-19)
    sum a = (1.0856062142988731e-16,6.498707821878113e-18,7.434873029732447e-17)
    sum e = 2.5920012881574834
    sum de = -7.453889935837843e-20
Info: CFL hydro = 0.011104016773158651 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011104016773158651 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5960e+04 |  512 |      1 | 3.208e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1246.3370634017588 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.800026927079122, dt = 0.011104016773158651 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.2%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 405.20 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.939914800660249e-17,-6.940737047600453e-17,4.99112470103702e-19)
    sum a = (-7.614026596713952e-18,8.69714456702697e-17,3.5766311787255314e-17)
    sum e = 2.5920012896663285
    sum de = -1.531435568635775e-18
Info: CFL hydro = 0.011102946047833295 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011102946047833295 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5799e+04 |  512 |      1 | 3.241e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1233.5227337025963 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.81113094385228, dt = 0.011102946047833295 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.1%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 427.77 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.95 us    (77.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8737567840951836e-17,-6.789393266343202e-17,6.952446431063297e-19)
    sum a = (-1.0768534501603977e-16,-2.200778621841426e-17,-1.8114416217018813e-17)
    sum e = 2.592001290936285
    sum de = 3.1848438816761693e-19
Info: CFL hydro = 0.01110332020539882 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01110332020539882 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6012e+04 |  512 |      1 | 3.198e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1250.0140580573745 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.822233889900113, dt = 0.01110332020539882 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.2%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 383.52 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.680259222371696e-17,-6.877506376901099e-17,1.141664887627236e-19)
    sum a = (-6.49753688353183e-17,9.132148162671605e-17,-8.22789102475352e-17)
    sum e = 2.5920012920470943
    sum de = 6.572975670693371e-19
Info: CFL hydro = 0.011105122164630485 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011105122164630485 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5862e+04 |  512 |      1 | 3.228e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1238.3564395505016 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.833337210105512, dt = 0.011105122164630485 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 396.36 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.654205844166869e-17,-6.717380558046715e-17,-1.1899660944114654e-18)
    sum a = (-2.6788142017120098e-17,-6.863455116745687e-17,2.9264676619511485e-17)
    sum e = 2.5920012930616574
    sum de = -3.2526065174565133e-19
Info: CFL hydro = 0.011108314064733647 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011108314064733647 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5791e+04 |  512 |      1 | 3.242e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1233.0153766740575 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.844442332270143, dt = 0.011108314064733647 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.1%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 435.16 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.576171875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6433746644637385e-17,-6.881311926526523e-17,-1.9174115420406145e-19)
    sum a = (-1.3687683798890847e-16,4.599445824204906e-17,-4.9466290438782144e-17)
    sum e = 2.5920012940126855
    sum de = 8.538092108323347e-19
Info: CFL hydro = 0.011112837377601782 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011112837377601782 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5929e+04 |  512 |      1 | 3.214e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1244.103661206532 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.855550646334876, dt = 0.011112837377601782 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.2%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 394.61 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.568359375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.416505359871147e-17,-6.739042917452975e-17,-1.1665473274857784e-18)
    sum a = (1.2529625774415631e-16,1.178549445535193e-16,2.159503045134903e-17)
    sum e = 2.592001294908682
    sum de = -1.3552527156068805e-19
Info: CFL hydro = 0.011118614061654413 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011118614061654413 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6110e+04 |  512 |      1 | 3.178e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1258.7528194236925 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.866663483712479, dt = 0.011118614061654413 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.1%)
   patch tree reduce : 2.03 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 437.92 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.35 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.568359375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.688455790795686e-17,-6.573647876040312e-17,-5.444863310222204e-19)
    sum a = (-1.486301316397376e-16,-9.729912188449764e-17,-4.521432056883712e-17)
    sum e = 2.5920012957379965
    sum de = 8.944667923005412e-19
Info: CFL hydro = 0.01112554766485033 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01112554766485033 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5756e+04 |  512 |      1 | 3.250e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1231.7357798656346 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.877782097774134, dt = 0.01112554766485033 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.2%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 423.61 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.568359375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3682041530869175e-17,-6.803444526498614e-17,-1.4343994741983224e-18)
    sum a = (-8.13099587659849e-17,-5.4354958034519286e-17,-3.7030925201242405e-18)
    sum e = 2.592001296451714
    sum de = 2.439454888092385e-19
Info: CFL hydro = 0.011128986680149364 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011128986680149364 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5786e+04 |  512 |      1 | 3.243e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1234.847131861437 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.888907645438984, dt = 0.011128986680149364 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.2%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1333.00 ns (0.3%)
   LB compute        : 422.51 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.568359375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.325464903447539e-17,-6.849696591176846e-17,-1.2441219929271163e-18)
    sum a = (4.7033666024376416e-17,-1.8171792195986746e-16,-5.1333937101105673e-17)
    sum e = 2.59200129689481
    sum de = 2.0599841277224584e-18
Info: CFL hydro = 0.011130962085767549 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011130962085767549 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5952e+04 |  512 |      1 | 3.210e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1248.2650750514247 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.900036632119132, dt = 0.011130962085767549 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.4%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 400.99 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.568359375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4489988989805373e-17,-7.15004227699878e-17,-2.1179347338418088e-18)
    sum a = (-5.813708889301772e-18,9.513874063560301e-18,3.302924340281566e-17)
    sum e = 2.5920012970350803
    sum de = -9.859463506040056e-19
Info: CFL hydro = 0.011133627994965398 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011133627994965398 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5850e+04 |  512 |      1 | 3.230e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1240.5302659527053 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.9111675942049, dt = 0.011133627994965398 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 419.30 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (74.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.568359375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4217745824294267e-17,-7.018604447628362e-17,-1.2880321809127792e-18)
    sum a = (1.4594575548088074e-16,-3.674989999813416e-17,-5.1579834153825386e-18)
    sum e = 2.592001296846219
    sum de = -1.1756817307889689e-18
Info: CFL hydro = 0.011134957537561016 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011134957537561016 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5739e+04 |  512 |      1 | 3.253e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1232.1079567867228 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.922301222199865, dt = 0.011134957537561016 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.4%)
   patch tree reduce : 1944.00 ns (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 406.60 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.568359375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.671769919361134e-17,-7.070418469451445e-17,-1.5778394216181545e-18)
    sum a = (-7.690430323809006e-17,-5.3977330417842585e-17,-7.412039731979902e-17)
    sum e = 2.5920012962314503
    sum de = 1.0672615135404184e-19
Info: CFL hydro = 0.01113312779950583 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01113312779950583 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5833e+04 |  512 |      1 | 3.234e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1239.6252849893394 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.933436179737425, dt = 0.01113312779950583 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.2%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 423.65 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (75.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.568359375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.44958436815368e-17,-7.132185467217944e-17,-2.7743920442274694e-18)
    sum a = (-1.1418112549205218e-17,5.283859287608106e-18,-1.559104408077605e-17)
    sum e = 2.592001295123912
    sum de = 5.539595475043124e-19
Info: CFL hydro = 0.01113251115062285 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01113251115062285 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5685e+04 |  512 |      1 | 3.264e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1227.8474847478485 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.94456930753693, dt = 0.01113251115062285 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.3%)
   patch tree reduce : 1934.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 403.41 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.51 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.568359375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.501105655390191e-17,-7.106132089013117e-17,-2.5819190535569803e-18)
    sum a = (-2.251714439904795e-17,-9.256853096550888e-17,1.1047803297192793e-17)
    sum e = 2.5920012936081767
    sum de = 5.039846036163087e-20
Info: CFL hydro = 0.011133113880952523 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011133113880952523 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5995e+04 |  512 |      1 | 3.201e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1252.016679613425 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.955701818687553, dt = 0.011133113880952523 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 821.00 ns  (0.2%)
   LB compute        : 380.38 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.32 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.568359375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4630501591359494e-17,-7.260110481549508e-17,-2.3469995478336835e-18)
    sum a = (1.2905204248986336e-16,2.901365671152678e-17,-8.565414003069982e-18)
    sum e = 2.5920012917260213
    sum de = -4.722208680942724e-19
Info: CFL hydro = 0.011134927535625849 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011134927535625849 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5949e+04 |  512 |      1 | 3.210e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1248.5128828612055 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.966834932568505, dt = 0.011134927535625849 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.2%)
   patch tree reduce : 2.14 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 413.13 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.568359375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.684357506583691e-17,-7.153262357451063e-17,-2.5467909031684497e-18)
    sum a = (1.81125134422061e-16,4.055252227769257e-17,5.0888980529517624e-17)
    sum e = 2.5920012895542297
    sum de = -3.2356658585114273e-19
Info: CFL hydro = 0.011125283127550996 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011125283127550996 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5838e+04 |  512 |      1 | 3.233e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1239.9688149263525 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.97796986010413, dt = 0.011125283127550996 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (1.1%)
   patch tree reduce : 1954.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 429.03 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.568359375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9176669720808467e-17,-7.121354287514813e-17,-1.5932079874131365e-18)
    sum a = (2.904512567958317e-17,-8.526773037642599e-17,4.0982842119952065e-18)
    sum e = 2.592001286987034
    sum de = -9.808641529204798e-19
Info: CFL hydro = 0.011114653332527617 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011114653332527617 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6236e+04 |  512 |      1 | 3.154e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1270.0489167006922 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.989095143231681, dt = 0.010904856768318538 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.48 us    (1.0%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 442.26 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.50 us    (73.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.568359375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.853265363035208e-17,-7.270063457492925e-17,-1.8639874799913915e-18)
    sum a = (8.13889971043591e-17,-8.781159393372872e-17,4.1088226571117656e-17)
    sum e = 2.5920012808350705
    sum de = 1.0875903042745216e-18
Info: CFL hydro = 0.011105852463519769 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011105852463519769 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5889e+04 |  512 |      1 | 3.222e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1218.3091121503596 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 1433                                                    [SPH][rank=0]
Info: time since start : 772.2836570950001 (s)                                        [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14987910233317023 max=0.15011565069091798 delta=0.00023654835774775118
Number of particle pairs: 130816
Distance min=0.137743 max=1.939438 mean=0.802254
---------------- t = 12, dt = 0.011105852463519769 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.70 us    (1.4%)
   patch tree reduce : 1492.00 ns (0.2%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.1%)
   LB compute        : 678.30 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 4.74 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (81.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.568359375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.984117723232483e-17,-7.363445790609102e-17,-1.2594905587220983e-18)
    sum a = (1.2818554811361292e-16,1.119241418295891e-16,7.606415497463104e-17)
    sum e = 2.5920012819326073
    sum de = -1.2061749168901237e-18
Info: CFL hydro = 0.011098570045227275 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011098570045227275 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2241e+04 |  512 |      1 | 4.183e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 955.899469910083 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 12.011105852463519, dt = 0.011098570045227275 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.1%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 821.00 ns  (0.2%)
   LB compute        : 432.18 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (63.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.568359375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1553674563765684e-17,-7.16350806798105e-17,-3.0444397003392963e-19)
    sum a = (-2.1580393722020476e-17,-4.3939461444320036e-17,7.687210243356723e-17)
    sum e = 2.592001279793223
    sum de = -1.1384122811097797e-18
Info: CFL hydro = 0.011093178100708442 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011093178100708442 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6262e+04 |  512 |      1 | 3.149e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1269.0079034764715 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.022204422508747, dt = 0.011093178100708442 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.29 us    (1.0%)
   patch tree reduce : 942.00 ns  (0.2%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 395.57 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 2.85 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.568359375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0529103510766884e-17,-7.296995039457466e-17,7.036607624702484e-19)
    sum a = (1.6832165544190813e-16,-7.139796566468792e-17,-1.059699203387332e-17)
    sum e = 2.592001278142223
    sum de = -7.081195439045951e-19
Info: CFL hydro = 0.011089721815001716 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011089721815001716 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5969e+04 |  512 |      1 | 3.206e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1245.5265914276401 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.033297600609455, dt = 0.011089721815001716 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.4%)
   patch tree reduce : 1934.00 ns (0.5%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.2%)
   LB compute        : 396.26 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.64 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.568359375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.342717591782064e-17,-7.362567586849389e-17,4.8301206784229223e-20)
    sum a = (1.8555933157214654e-16,-1.4074678922337825e-17,-1.9250226412914628e-17)
    sum e = 2.59200127712086
    sum de = 4.70950318673391e-19
Info: CFL hydro = 0.011088250131880681 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011088250131880681 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5914e+04 |  512 |      1 | 3.217e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1240.9070764064766 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.044387322424457, dt = 0.011088250131880681 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (1.5%)
   patch tree reduce : 2.19 us    (0.5%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 404.34 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.05 us    (73.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.568359375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5569993091520985e-17,-7.358469302637393e-17,-2.1429086532586545e-19)
    sum a = (2.5293731952674702e-17,6.558425677538615e-17,7.597047990692828e-17)
    sum e = 2.5920012768365868
    sum de = 3.3881317890172014e-19
Info: CFL hydro = 0.011088784103063186 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011088784103063186 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5973e+04 |  512 |      1 | 3.205e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1245.3608796938122 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.055475572556338, dt = 0.011088784103063186 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 410.66 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.568359375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4902558234138914e-17,-7.246644690567239e-17,1.19668984194677e-18)
    sum a = (-1.4202750303962675e-16,-4.158002067655708e-17,-4.4952323113856e-17)
    sum e = 2.5920012773545724
    sum de = -2.642742795433417e-19
Info: CFL hydro = 0.011091320091597854 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011091320091597854 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5954e+04 |  512 |      1 | 3.209e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1243.877352254515 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.0665643566594, dt = 0.011091320091597854 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.3%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 411.31 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 us    (73.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.568359375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.218598127075923e-17,-7.345296246241695e-17,5.616844879832716e-20)
    sum a = (-1.165376389139494e-16,-7.00689506416552e-17,-9.382143499603313e-17)
    sum e = 2.592001278689188
    sum de = -1.4772254600114998e-18
Info: CFL hydro = 0.011089502566493008 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011089502566493008 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6206e+04 |  512 |      1 | 3.159e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1263.834836844278 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.077655676750998, dt = 0.011089502566493008 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.2%)
   patch tree reduce : 1913.00 ns (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 388.10 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.568359375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.107651718765481e-17,-7.433702091386163e-17,-1.4040282608415722e-18)
    sum a = (2.1787503442019518e-16,-6.908536243077634e-18,5.4559872245119045e-17)
    sum e = 2.5920012807025077
    sum de = -6.505213034913027e-19
Info: CFL hydro = 0.011082651211534697 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011082651211534697 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5877e+04 |  512 |      1 | 3.225e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1237.9665576934394 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.088745179317492, dt = 0.011082651211534697 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 24.25 us   (5.5%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 403.93 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.568359375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.544118987342971e-17,-7.413503404912758e-17,3.329855922246105e-20)
    sum a = (-9.414344304126131e-18,-6.27154578269895e-17,-1.2388527703688367e-17)
    sum e = 2.5920012832755757
    sum de = 8.809142651444724e-20
Info: CFL hydro = 0.011076825367854422 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011076825367854422 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6191e+04 |  512 |      1 | 3.162e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1261.6467793764439 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.099827830529026, dt = 0.011076825367854422 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 389.47 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.568359375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.412973892559124e-17,-7.479368686891253e-17,-5.335087840258046e-19)
    sum a = (-5.517461487691833e-17,-3.6931395441808235e-17,7.37632611241823e-17)
    sum e = 2.5920012863491633
    sum de = -3.2424421220894617e-18
Info: CFL hydro = 0.011072067036276433 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011072067036276433 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6269e+04 |  512 |      1 | 3.147e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1267.1228041397014 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.110904655896881, dt = 0.011072067036276433 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (1.1%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 403.07 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.568359375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.324860782001227e-17,-7.527084424502339e-17,8.053860313037009e-19)
    sum a = (-9.85051883811705e-19,8.526773037642599e-17,8.823020439252538e-18)
    sum e = 2.5920012897344193
    sum de = 1.4840017235895342e-18
Info: CFL hydro = 0.011068404263682309 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011068404263682309 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4718e+04 |  512 |      1 | 3.479e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1145.825050029796 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.121976722933157, dt = 0.011068404263682309 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.5%)
   patch tree reduce : 2.18 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 385.38 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (74.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.568359375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3655508895346086e-17,-7.361982117676247e-17,5.466818404215035e-19)
    sum a = (1.9285940032476302e-16,-1.1751537243309683e-16,2.1417926026473522e-17)
    sum e = 2.592001293224605
    sum de = -8.775261333554552e-19
Info: CFL hydro = 0.011065852979733812 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011065852979733812 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5810e+04 |  512 |      1 | 3.238e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1230.4034539900674 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.133045127196839, dt = 0.011065852979733812 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 386.01 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.60 us    (76.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.568359375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.646576092642851e-17,-7.581825792191132e-17,7.687942079823151e-19)
    sum a = (-2.2631310887810673e-17,1.4245635920895337e-16,-3.0665411616254136e-17)
    sum e = 2.592001296598985
    sum de = -4.1335207826009857e-19
Info: CFL hydro = 0.011064416880795739 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011064416880795739 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5297e+04 |  512 |      1 | 3.347e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1190.2316720585097 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.144110980176572, dt = 0.011064416880795739 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.2%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 382.40 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.74 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.568359375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5286040542547034e-17,-7.300215119909748e-17,2.345535874900828e-19)
    sum a = (-8.59732207300623e-17,8.663772824157867e-17,1.5778394216181546e-17)
    sum e = 2.5920012996438886
    sum de = 9.012430558785756e-19
Info: CFL hydro = 0.011064087692692189 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011064087692692189 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5415e+04 |  512 |      1 | 3.321e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1199.23167243 (tsim/hr)                                 [sph::Model][rank=0]
---------------- t = 12.155175397057368, dt = 0.011064087692692189 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.2%)
   patch tree reduce : 2.17 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 406.41 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.560546875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.392482471499148e-17,-7.244595548461241e-17,6.86828523742411e-19)
    sum a = (-1.797097626959898e-17,-6.946006270158733e-17,-1.4555349113487547e-16)
    sum e = 2.5920013021739226
    sum de = -3.8963515573697816e-20
Info: CFL hydro = 0.011064855885218338 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011064855885218338 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5987e+04 |  512 |      1 | 3.203e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1243.7079809174932 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.16623948475006, dt = 0.011064855885218338 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 1592.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 381.83 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.560546875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.400679039923139e-17,-7.407355978594765e-17,-1.7772648587197072e-18)
    sum a = (-6.428451521101053e-18,3.1732429184305745e-18,1.483637431659579e-16)
    sum e = 2.592001304036809
    sum de = -1.7872395187065737e-18
Info: CFL hydro = 0.011066691973977142 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011066691973977142 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5998e+04 |  512 |      1 | 3.200e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1244.6564188219977 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.177304340635278, dt = 0.011066691973977142 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.2%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 394.19 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (73.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.560546875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.408290139173987e-17,-7.349979999626832e-17,1.5707040160704843e-18)
    sum a = (-1.262593545339752e-16,1.567710804922795e-16,-8.138021506676197e-18)
    sum e = 2.5920013051356325
    sum de = -1.105377996166862e-18
Info: CFL hydro = 0.011069542498848358 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011069542498848358 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5866e+04 |  512 |      1 | 3.227e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1234.5548479738645 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.188371032609254, dt = 0.011069542498848358 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.2%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 380.30 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.560546875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2054250706802244e-17,-7.107595761945972e-17,5.907749875237733e-19)
    sum a = (1.2043100891534486e-16,-4.087745766878648e-17,-3.090106295844386e-17)
    sum e = 2.592001305431285
    sum de = -1.9058241313221758e-19
Info: CFL hydro = 0.011073347698112178 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011073347698112178 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6087e+04 |  512 |      1 | 3.183e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1252.056897481204 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.199440575108103, dt = 0.011073347698112178 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.2%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 386.66 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.560546875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.463616976035922e-17,-7.258646808616653e-17,4.4093147102269856e-20)
    sum a = (1.0870698872317286e-16,-2.313188703084723e-17,-5.111145881531165e-17)
    sum e = 2.592001304944274
    sum de = 4.599388903590851e-19
Info: CFL hydro = 0.01107804309075521 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01107804309075521 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6131e+04 |  512 |      1 | 3.174e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1255.9707434938864 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.210513922806214, dt = 0.01107804309075521 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1612.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 425.38 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.560546875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.58554093134278e-17,-7.265672438694359e-17,-5.895857532658282e-19)
    sum a = (-8.879225479874186e-17,1.5148429385880568e-16,-9.625113206457314e-17)
    sum e = 2.5920013037661302
    sum de = -5.183841637196318e-19
Info: CFL hydro = 0.011083555405564913 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011083555405564913 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6109e+04 |  512 |      1 | 3.178e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1254.7875030411274 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.22159196589697, dt = 0.011083555405564913 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.3%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 382.41 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.560546875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.384578637661729e-17,-6.994600211529534e-17,-1.9143012370582966e-18)
    sum a = (-1.477724193010843e-17,-1.3191205940066286e-16,7.529133566608336e-17)
    sum e = 2.5920013020365156
    sum de = -1.0164395367051604e-19
Info: CFL hydro = 0.011089802396266897 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011089802396266897 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6013e+04 |  512 |      1 | 3.197e-02 | 0.0% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1247.9428343552242 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.232675521302534, dt = 0.011089802396266897 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.2%)
   patch tree reduce : 1844.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.2%)
   LB compute        : 424.02 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (73.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.560546875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.39965446887014e-17,-7.294945897351468e-17,-2.0710971999904348e-19)
    sum a = (1.1961720676467723e-16,1.4783096621839852e-17,5.261025989855561e-17)
    sum e = 2.592001299961045
    sum de = -2.0091621508872004e-18
Info: CFL hydro = 0.011096694326028406 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011096694326028406 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6256e+04 |  512 |      1 | 3.150e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1267.5895673068853 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.2437653236988, dt = 0.011096694326028406 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.1%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 392.05 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.560546875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5971039475123374e-17,-7.21180927476528e-17,2.8980724070537534e-19)
    sum a = (-4.560219389604381e-17,-2.4059855670277576e-17,7.46004820417756e-17)
    sum e = 2.592001297763858
    sum de = 2.876523888875604e-18
Info: CFL hydro = 0.011104135823301123 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011104135823301123 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6342e+04 |  512 |      1 | 3.133e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1275.0583490213057 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.254862018024829, dt = 0.011104135823301123 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.2%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 394.18 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.560546875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.463324241449351e-17,-7.262745092828649e-17,1.3019370737749059e-18)
    sum a = (-2.1388652567816412e-16,2.988161476071005e-17,6.268032967660098e-17)
    sum e = 2.592001295687968
    sum de = -1.6263032587282567e-18
Info: CFL hydro = 0.011111623395732661 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011111623395732661 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6040e+04 |  512 |      1 | 3.192e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1252.3378671865307 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.26596615384813, dt = 0.011111623395732661 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.0%)
   patch tree reduce : 2.00 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 468.94 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.560546875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1269722014791734e-17,-7.200099891302436e-17,1.8588646247263973e-18)
    sum a = (1.1709383462843448e-17,-9.239142654063337e-17,-1.278781767977133e-16)
    sum e = 2.592001293970268
    sum de = -5.72594272343907e-19
Info: CFL hydro = 0.01111833775401757 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01111833775401757 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6101e+04 |  512 |      1 | 3.180e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1257.9491005257064 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.277077777243862, dt = 0.01111833775401757 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 396.93 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.560546875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.282121532361849e-17,-7.36286032143596e-17,-5.832736637428892e-19)
    sum a = (2.1041762082729675e-17,-3.7235839411842166e-18,-9.367506770274759e-18)
    sum e = 2.5920012928204037
    sum de = 7.047314121155779e-19
Info: CFL hydro = 0.011125300347465918 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011125300347465918 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5828e+04 |  512 |      1 | 3.235e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1237.3659996610352 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.28819611499788, dt = 0.011125300347465918 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.2%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 413.72 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.560546875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.29324544665155e-17,-7.316022787584586e-17,-5.4155898515650946e-20)
    sum a = (-1.2031976977244784e-16,2.0167656607228412e-16,-1.7115605807638267e-16)
    sum e = 2.5920012924299134
    sum de = 9.825582188149884e-19
Info: CFL hydro = 0.01113242865574173 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01113242865574173 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6149e+04 |  512 |      1 | 3.171e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1263.233073737081 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.299321415345347, dt = 0.01113242865574173 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 412.69 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.560546875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.079549198454657e-17,-6.976450667162126e-17,-2.8292797792095482e-18)
    sum a = (1.6018436577169837e-16,-6.824814151318303e-17,2.682619751337434e-17)
    sum e = 2.5920012929203673
    sum de = -9.0801931945661e-19
Info: CFL hydro = 0.011139640592776046 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011139640592776046 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.0193e+04 |  512 |      1 | 5.023e-02 | 0.1% |   1.1% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 797.8623506849428 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.310453844001088, dt = 0.011139640592776046 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.3%)
   patch tree reduce : 1844.00 ns (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 432.14 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.560546875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.402581814735851e-17,-7.205954583033857e-17,-1.375852556884105e-18)
    sum a = (-3.980019439020488e-17,-1.1202952628075468e-17,9.101703765668212e-17)
    sum e = 2.5920012943460846
    sum de = -4.1335207826009857e-19
Info: CFL hydro = 0.011146423459157898 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011146423459157898 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6117e+04 |  512 |      1 | 3.177e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1262.4026987402062 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.321593484593864, dt = 0.011146423459157898 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (1.1%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 398.24 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.560546875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2474324838531754e-17,-7.179023001069318e-17,1.463672932855431e-20)
    sum a = (7.858167241914238e-17,4.8476847536171875e-17,4.587736440742063e-17)
    sum e = 2.5920012966743307
    sum de = 2.574980159653073e-19
Info: CFL hydro = 0.011141710242651742 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011141710242651742 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6326e+04 |  512 |      1 | 3.136e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1279.5608573311267 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.332739908053021, dt = 0.011141710242651742 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 410.45 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.560546875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.404484589548563e-17,-7.090031686751707e-17,3.117623346982068e-19)
    sum a = (-1.3824683585406118e-16,-4.444881962495373e-17,5.316060092130925e-17)
    sum e = 2.59200129962322
    sum de = 6.437450399132683e-19
Info: CFL hydro = 0.011137130079109638 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011137130079109638 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6396e+04 |  512 |      1 | 3.123e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1284.4981557562814 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.343881618295674, dt = 0.011137130079109638 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.2%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 392.94 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.560546875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.134729668023307e-17,-7.187219569493308e-17,1.0260347259316571e-18)
    sum a = (1.0083535569027635e-16,1.1867460139591834e-17,-2.985892783025079e-18)
    sum e = 2.592001303187564
    sum de = 1.8295911660692887e-19
Info: CFL hydro = 0.01113273714914533 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01113273714914533 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6124e+04 |  512 |      1 | 3.175e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1262.6690597382037 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.355018748374784, dt = 0.01113273714914533 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.3%)
   patch tree reduce : 1773.00 ns (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 372.20 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.560546875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3921897369125773e-17,-7.15267688827792e-17,6.366977257921124e-19)
    sum a = (4.85646679121432e-17,-1.208466920282758e-16,1.0595821095527036e-16)
    sum e = 2.592001307136735
    sum de = 2.202285662861181e-19
Info: CFL hydro = 0.011128585501874247 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011128585501874247 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5720e+04 |  512 |      1 | 3.257e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1230.493046004059 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.366151485523929, dt = 0.011128585501874247 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.2%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 372.46 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.560546875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.414730300078551e-17,-7.348809061280548e-17,2.554109267832727e-18)
    sum a = (1.5957547783163052e-16,1.521048911823364e-16,-9.098190950629359e-18)
    sum e = 2.5920013111931794
    sum de = -5.04831636563563e-19
Info: CFL hydro = 0.011124727860371776 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011124727860371776 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6219e+04 |  512 |      1 | 3.157e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1269.1279692064393 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.377280071025803, dt = 0.011124727860371776 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.2%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 414.15 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.560546875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6571145377594104e-17,-7.044365091246618e-17,1.653950414126637e-18)
    sum a = (-1.1126256166393843e-16,1.1864240059139551e-16,-1.4273738441206162e-17)
    sum e = 2.592001315064661
    sum de = 4.607859233063394e-19
Info: CFL hydro = 0.011120529035100926 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011120529035100926 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6048e+04 |  512 |      1 | 3.191e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1255.2520197855874 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.388404798886175, dt = 0.011120529035100926 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.2%)
   patch tree reduce : 1724.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 394.72 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.560546875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3863350451811554e-17,-6.926978522031612e-17,1.6363863389323718e-18)
    sum a = (1.0314210423245651e-16,5.934022804382488e-17,5.43315392675936e-18)
    sum e = 2.592001318449576
    sum de = -3.2221133313553585e-18
Info: CFL hydro = 0.011112377877015207 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011112377877015207 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5546e+04 |  512 |      1 | 3.293e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1215.5914820204994 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.399525327921275, dt = 0.011112377877015207 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.5%)
   patch tree reduce : 2.20 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 389.39 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.92 us    (73.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.560546875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.603544108416901e-17,-6.898876001720788e-17,1.5661300381553112e-18)
    sum a = (-1.171816550044058e-16,6.165283127773647e-17,-1.1845797780185573e-16)
    sum e = 2.592001321013944
    sum de = 6.132518538121134e-19
Info: CFL hydro = 0.011104244019382349 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011104244019382349 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5977e+04 |  512 |      1 | 3.205e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1248.3755136481113 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.41063770579829, dt = 0.011104244019382349 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.0%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 421.37 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.552734375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3536951387784795e-17,-6.806371872364326e-17,-4.24465150528075e-19)
    sum a = (-5.792631999068653e-17,1.0885628336232411e-16,7.061343697267741e-17)
    sum e = 2.592001322607959
    sum de = -7.148958074826295e-19
Info: CFL hydro = 0.01109629011399868 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01109629011399868 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5689e+04 |  512 |      1 | 3.263e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1224.929257795374 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.421741949817672, dt = 0.01109629011399868 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.2%)
   patch tree reduce : 1923.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 448.43 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 us    (74.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.552734375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3116877256055285e-17,-6.674348573820766e-17,1.3846345944812376e-18)
    sum a = (1.4950540805358514e-16,6.857014955841123e-17,-8.767986336977173e-17)
    sum e = 2.59200132308992
    sum de = 5.179606472460047e-19
Info: CFL hydro = 0.011088677281295848 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011088677281295848 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5588e+04 |  512 |      1 | 3.285e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1216.1947671159844 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.432838239931671, dt = 0.011088677281295848 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.2%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 383.84 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (61.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.552734375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6025195373639027e-17,-6.617850798612546e-17,-2.75170511376821e-19)
    sum a = (-2.4601414655434083e-17,3.3555433822177185e-17,-1.3796581065095293e-17)
    sum e = 2.592001322403381
    sum de = -2.0921713797181218e-19
Info: CFL hydro = 0.011080806361289226 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011080806361289226 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4022e+04 |  512 |      1 | 3.651e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1093.275972842886 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.443926917212966, dt = 0.011080806361289226 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (0.7%)
   patch tree reduce : 1863.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.1%)
   LB compute        : 701.67 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.552734375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.483669295216042e-17,-6.592968358754003e-17,-1.2880321809127792e-19)
    sum a = (5.1269535492060035e-17,2.7536078885809224e-17,-9.844371411799057e-17)
    sum e = 2.5920013205548353
    sum de = -1.2180333781516839e-18
Info: CFL hydro = 0.011073472007147799 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011073472007147799 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1941e+04 |  512 |      1 | 4.288e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 930.3240143433455 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.455007723574255, dt = 0.011073472007147799 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (0.7%)
   patch tree reduce : 1793.00 ns (0.2%)
   gen split merge   : 912.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 993.00 ns  (0.1%)
   LB compute        : 702.47 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (72.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.552734375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.575734322692648e-17,-6.569256857241746e-17,-1.7915356698150476e-18)
    sum a = (-1.0529077609788828e-16,-1.9520274069026454e-17,1.1398060230025097e-16)
    sum e = 2.592001317663927
    sum de = 2.0159384144652348e-19
Info: CFL hydro = 0.011066927404247185 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011066927404247185 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5258e+04 |  512 |      1 | 3.356e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1187.9928761173264 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.466081195581403, dt = 0.011066927404247185 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.2%)
   patch tree reduce : 1844.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 402.81 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (75.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.552734375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3716983158526015e-17,-6.611117903121411e-17,8.986951807732346e-19)
    sum a = (-2.7721965348281863e-17,2.5602566941507198e-17,1.5887437849679276e-17)
    sum e = 2.5920013139158025
    sum de = -8.470329472543003e-19
Info: CFL hydro = 0.011061319938937622 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011061319938937622 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5561e+04 |  512 |      1 | 3.290e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1210.892973481578 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.47714812298565, dt = 0.011061319938937622 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.2%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1213.00 ns (0.3%)
   LB compute        : 434.09 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.552734375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3721374177324576e-17,-6.547887232422056e-17,3.3664477455674912e-19)
    sum a = (3.375815252337766e-17,8.069814348005133e-17,7.739316999766377e-17)
    sum e = 2.592001309571069
    sum de = 1.1858461261560205e-19
Info: CFL hydro = 0.011056783919762211 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011056783919762211 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5864e+04 |  512 |      1 | 3.228e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1233.7939187308111 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.488209442924587, dt = 0.011056783919762211 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (1.2%)
   patch tree reduce : 1863.00 ns (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 376.80 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.552734375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4529321636260773e-17,-6.43840449704447e-17,1.6656597975894804e-18)
    sum a = (-6.206558704480169e-17,-1.6012581885438415e-17,1.2221668989342848e-17)
    sum e = 2.592001304939265
    sum de = -4.472333961502706e-19
Info: CFL hydro = 0.011053437979330545 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011053437979330545 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5395e+04 |  512 |      1 | 3.326e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1196.8285915464926 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.49926622684435, dt = 0.0007337731556500415 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 403.30 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (73.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.552734375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.424902826961896e-17,-6.506611655715533e-17,1.3319423688984422e-18)
    sum a = (1.186101997868727e-16,4.9305286416168045e-17,9.95297594341693e-18)
    sum e = 2.592001218048553
    sum de = 8.876905287225068e-19
Info: CFL hydro = 0.011053873969633966 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011053873969633966 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4779e+04 |  512 |      1 | 3.464e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.24910025408778 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1479                                                    [SPH][rank=0]
Info: time since start : 774.7744185800001 (s)                                        [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14989955449875966 max=0.1501098031742967 delta=0.0002102486755370392
Number of particle pairs: 130816
Distance min=0.134409 max=1.934601 mean=0.801900
---------------- t = 12.5, dt = 0.011053873969633966 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.30 us   (1.4%)
   patch tree reduce : 1833.00 ns (0.2%)
   gen split merge   : 612.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.1%)
   LB compute        : 707.96 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 5.03 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (82.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.552734375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5473756596185745e-17,-6.450406615093885e-17,1.2880321809127792e-18)
    sum a = (-1.63053164720095e-17,-5.492871782419861e-17,3.481199703503357e-17)
    sum e = 2.5920013013976857
    sum de = 5.793705359219414e-19
Info: CFL hydro = 0.011051296398137725 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011051296398137725 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4620e+04 |  512 |      1 | 3.502e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1136.278127895231 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.511053873969633, dt = 0.011051296398137725 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 2.14 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 397.61 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.552734375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.445467431668515e-17,-6.56252396175061e-17,2.0023045721462296e-18)
    sum a = (-2.4062783016143285e-17,1.0011522860731148e-18,6.580088036944875e-17)
    sum e = 2.5920012966226103
    sum de = -7.521652571618187e-19
Info: CFL hydro = 0.01105071067563593 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01105071067563593 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5732e+04 |  512 |      1 | 3.254e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1222.467316226098 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.522105170367771, dt = 0.01105071067563593 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.5%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 402.18 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (74.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.552734375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.416633074891263e-17,-6.535592379786071e-17,2.7634144972310537e-18)
    sum a = (7.946573087058706e-17,-4.717125128006483e-17,-9.46762199888207e-17)
    sum e = 2.592001293165303
    sum de = 6.098637220230962e-19
Info: CFL hydro = 0.011051568440995047 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011051568440995047 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5542e+04 |  512 |      1 | 3.294e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1207.584564937944 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.533155881043408, dt = 0.011051568440995047 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.2%)
   patch tree reduce : 2.11 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 385.66 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 21.67 us   (5.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (73.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.552734375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.558170247498383e-17,-6.599408519658567e-17,8.313662258618848e-19)
    sum a = (1.7578711923593725e-16,-1.3921285998974575e-16,2.004646448838798e-17)
    sum e = 2.59200129073184
    sum de = 1.294266343404571e-18
Info: CFL hydro = 0.011053908978072801 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011053908978072801 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5710e+04 |  512 |      1 | 3.259e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1220.7296622357778 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.544207449484404, dt = 0.011053908978072801 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.2%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 441.27 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.552734375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8003715260626356e-17,-6.813690237028602e-17,1.8442278953978432e-18)
    sum a = (-8.65908907077273e-18,-7.869291156203939e-17,-1.7206938998648445e-17)
    sum e = 2.5920012895248132
    sum de = 1.463672932855431e-18
Info: CFL hydro = 0.011057751766695498 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011057751766695498 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5420e+04 |  512 |      1 | 3.320e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1198.5045832179449 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.555261358462477, dt = 0.011057751766695498 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 402.61 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.552734375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6768741223529586e-17,-6.86696793178454e-17,1.317305639569888e-18)
    sum a = (-6.024477791632954e-17,-1.2066519658460174e-16,1.097696152724259e-16)
    sum e = 2.5920012896854567
    sum de = 1.8295911660692887e-19
Info: CFL hydro = 0.011063093770065618 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011063093770065618 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4344e+04 |  512 |      1 | 3.569e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1115.2731526354917 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.566319110229173, dt = 0.011063093770065618 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.3%)
   patch tree reduce : 1894.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 409.21 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.544921875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6104416671129825e-17,-7.014506163416368e-17,3.176170264296285e-18)
    sum a = (-4.9963939235952994e-17,2.1791162624351656e-17,-3.318439273369833e-17)
    sum e = 2.5920012912681014
    sum de = -3.6591823321385775e-19
Info: CFL hydro = 0.01106990963888631 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01106990963888631 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5800e+04 |  512 |      1 | 3.240e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1229.0769959667214 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.577382203999239, dt = 0.01106990963888631 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 388.61 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.544921875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5647018879612503e-17,-6.917903749847909e-17,1.990595188683386e-18)
    sum a = (2.548488763770562e-16,-1.5731556682330172e-16,-1.1463486410123735e-16)
    sum e = 2.5920012942348354
    sum de = 1.9244588561617704e-18
Info: CFL hydro = 0.011078151920385908 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011078151920385908 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5272e+04 |  512 |      1 | 3.352e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1188.7348437453793 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.588452113638125, dt = 0.011078151920385908 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 1944.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 392.77 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.47 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.544921875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.007353174680054e-17,-7.188975977012735e-17,4.1714678586379785e-19)
    sum a = (4.806701911497235e-18,1.15559905394802e-16,1.9513687540828606e-17)
    sum e = 2.5920012984577694
    sum de = 6.979551485375435e-19
Info: CFL hydro = 0.011087759002638442 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011087759002638442 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5729e+04 |  512 |      1 | 3.255e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1225.221121084602 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.59953026555851, dt = 0.011087759002638442 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.2%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 403.17 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.544921875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.869895990373269e-17,-6.905023428038781e-17,1.3304786959655867e-18)
    sum a = (2.999944043180491e-17,-2.4496030204268494e-17,-1.4331699889347238e-16)
    sum e = 2.592001303727301
    sum de = -7.115076756936123e-19
Info: CFL hydro = 0.01109863467730387 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01109863467730387 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5809e+04 |  512 |      1 | 3.239e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1232.466513433475 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.610618024561148, dt = 0.01109863467730387 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.4%)
   patch tree reduce : 1864.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 396.08 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (74.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.544921875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9235213074507595e-17,-7.015677101762652e-17,-1.1870387485457544e-18)
    sum a = (8.833558884369097e-17,-1.618119700730336e-16,2.191411115071151e-17)
    sum e = 2.592001309763311
    sum de = 9.656175598699024e-19
Info: CFL hydro = 0.011110665500297465 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011110665500297465 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5906e+04 |  512 |      1 | 3.219e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1241.2480961007598 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.621716659238452, dt = 0.011110665500297465 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.1%)
   patch tree reduce : 2.21 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 414.83 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.68 us    (78.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.544921875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.050842556697521e-17,-7.27152713042578e-17,-8.782037597132586e-21)
    sum a = (-2.3155305797772917e-17,-4.756351562607008e-17,-2.7563888671533476e-17)
    sum e = 2.592001316230738
    sum de = -4.845028458294598e-19
Info: CFL hydro = 0.011123721898609017 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011123721898609017 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6131e+04 |  512 |      1 | 3.174e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1260.1644864496443 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.632827324738749, dt = 0.011123721898609017 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.42 us    (1.1%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 383.68 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.544921875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.966827730351619e-17,-7.26040321613608e-17,-4.5520228211803905e-19)
    sum a = (-3.460122813270239e-17,7.819526276486855e-17,9.626284144803598e-17)
    sum e = 2.5920013227670533
    sum de = -1.2332799712022613e-18
Info: CFL hydro = 0.011137657600185674 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011137657600185674 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6374e+04 |  512 |      1 | 3.127e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1280.6809526595528 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.643951046637358, dt = 0.011137657600185674 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.30 us    (1.0%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 395.19 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.544921875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.933382803835873e-17,-7.107595761945972e-17,1.2265579177328512e-18)
    sum a = (-3.963040832999365e-17,1.804357444706861e-16,3.101230210134087e-17)
    sum e = 2.5920013290037045
    sum de = 1.9820570965750628e-19
Info: CFL hydro = 0.01114678774817553 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01114678774817553 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6011e+04 |  512 |      1 | 3.198e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1253.8458346097839 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.655088704237544, dt = 0.01114678774817553 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.2%)
   patch tree reduce : 1833.00 ns (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 378.89 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.544921875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.881422414719505e-17,-6.849989325763417e-17,1.1460559064258024e-18)
    sum a = (5.019812690520986e-17,-6.150939133031663e-17,-3.201930907914541e-17)
    sum e = 2.5920013344888315
    sum de = 2.4614777447209968e-18
Info: CFL hydro = 0.011150041214473492 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011150041214473492 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5951e+04 |  512 |      1 | 3.210e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1250.1469951479417 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.66623549198572, dt = 0.011150041214473492 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.2%)
   patch tree reduce : 1923.00 ns (0.4%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 417.68 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.544921875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9840990709593136e-17,-7.057245413055745e-17,4.112920941323761e-19)
    sum a = (-9.396780228931867e-18,1.1769394053090521e-16,3.710118150201946e-17)
    sum e = 2.592001338882485
    sum de = -1.5191535909005877e-18
Info: CFL hydro = 0.011154322809257213 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011154322809257213 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6030e+04 |  512 |      1 | 3.194e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1256.7141008876135 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.677385533200194, dt = 0.011154322809257213 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.3%)
   patch tree reduce : 1853.00 ns (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 374.25 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.544921875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.950873695383495e-17,-6.812519298682317e-17,1.2060664966728752e-18)
    sum a = (-5.812537950955487e-17,9.142540240494878e-17,-3.319024742542975e-17)
    sum e = 2.5920013420761028
    sum de = 1.8905775382715984e-18
Info: CFL hydro = 0.011159584660235245 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011159584660235245 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6019e+04 |  512 |      1 | 3.196e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1256.3757985430927 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.688539856009452, dt = 0.011159584660235245 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.4%)
   patch tree reduce : 2.09 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 401.71 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.42 us    (78.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.544921875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8419032455324084e-17,-6.733480960308124e-17,4.2007413172950867e-19)
    sum a = (1.3506773824389917e-17,5.238485426689587e-18,-3.3541528929315055e-17)
    sum e = 2.5920013439280014
    sum de = -8.012931681025681e-19
Info: CFL hydro = 0.0111657677952746 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.0111657677952746 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5706e+04 |  512 |      1 | 3.260e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1232.3672613467033 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.699699440669688, dt = 0.0111657677952746 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.1%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 404.27 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (73.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.544921875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8975960006275576e-17,-6.775634740774361e-17,1.141664887627236e-19)
    sum a = (-2.414474870038319e-17,-5.68110012158507e-17,-7.623979572657369e-17)
    sum e = 2.5920013443900123
    sum de = 3.4897757426877174e-19
Info: CFL hydro = 0.011162828017773904 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011162828017773904 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5756e+04 |  512 |      1 | 3.250e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1236.9866396223379 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.710865208464963, dt = 0.011162828017773904 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.1%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 440.20 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 us    (75.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.544921875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.842342347412265e-17,-6.848818387417133e-17,-9.923702484759823e-19)
    sum a = (9.970540018611196e-18,-8.316004135311416e-17,2.734141038573945e-18)
    sum e = 2.592001343312942
    sum de = -5.353248226647178e-19
Info: CFL hydro = 0.011159689234467574 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011159689234467574 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7070e+04 |  512 |      1 | 2.999e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1339.833098209099 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.722028036482737, dt = 0.011159689234467574 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.24 us    (1.1%)
   patch tree reduce : 1382.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.2%)
   LB compute        : 375.76 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.876299559454511e-17,-6.992843804010107e-17,-4.2592882346093043e-19)
    sum a = (-1.587382569140372e-16,-3.0824951965935377e-17,4.908573547623973e-17)
    sum e = 2.592001341016024
    sum de = -1.5009423825346202e-18
Info: CFL hydro = 0.01115671407507964 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01115671407507964 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6816e+04 |  512 |      1 | 3.045e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1319.5129609591588 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.733187725717205, dt = 0.01115671407507964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.37 us    (1.1%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 396.46 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6073496580423254e-17,-6.9746942596427e-17,2.3857868805543524e-19)
    sum a = (-5.669683472708798e-17,4.0766218525889465e-17,9.056037170163122e-17)
    sum e = 2.5920013377287012
    sum de = -9.452887691357992e-19
Info: CFL hydro = 0.01115393080216492 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01115393080216492 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6993e+04 |  512 |      1 | 3.013e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1332.992464439056 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.744344439792284, dt = 0.01115393080216492 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1993.00 ns (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 390.18 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.586199584162565e-17,-6.89097216788337e-17,1.5939398238795643e-18)
    sum a = (-4.14219439998087e-17,2.021273773356036e-16,-6.274765863151233e-17)
    sum e = 2.5920013337359107
    sum de = -1.2332799712022613e-18
Info: CFL hydro = 0.011151367300253482 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011151367300253482 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6857e+04 |  512 |      1 | 3.037e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1322.028612846548 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.755498370594449, dt = 0.011151367300253482 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.50 us    (1.2%)
   patch tree reduce : 1714.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 374.02 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.555828370805815e-17,-6.583600851983729e-17,-7.903833837419327e-20)
    sum a = (-5.1345646484568516e-18,1.0234001146525173e-17,8.861954139266492e-17)
    sum e = 2.592001329362141
    sum de = -4.0657581468206416e-20
Info: CFL hydro = 0.011149051180420871 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011149051180420871 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6802e+04 |  512 |      1 | 3.047e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1317.3797753152687 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.766649737894703, dt = 0.011149051180420871 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.2%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.3%)
   LB compute        : 375.92 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5984212531519076e-17,-6.662639190357922e-17,1.80031770741218e-18)
    sum a = (2.5696242009209946e-17,2.265765700060207e-17,-4.086574828532363e-18)
    sum e = 2.592001324946691
    sum de = -2.15485181781494e-18
Info: CFL hydro = 0.011147009003008001 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011147009003008001 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7222e+04 |  512 |      1 | 2.973e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1350.0687116818171 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.777798789075124, dt = 0.011147009003008001 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.2%)
   patch tree reduce : 2.13 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.3%)
   LB compute        : 379.00 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6489179693354197e-17,-6.663810128704207e-17,1.1584971263550736e-18)
    sum a = (1.3166616234794314e-16,1.4402541659297442e-18,-7.526498955329197e-17)
    sum e = 2.592001320808509
    sum de = 1.145188544687814e-18
Info: CFL hydro = 0.011145266183362666 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011145266183362666 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7097e+04 |  512 |      1 | 2.995e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1339.9991662270475 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.788945798078132, dt = 0.011145266183362666 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.24 us    (1.0%)
   patch tree reduce : 1333.00 ns (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 399.31 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.824851455864643e-17,-6.634536670047098e-17,7.318364664277155e-22)
    sum a = (-6.636878546739666e-17,-8.805456364058272e-17,-8.276777700710891e-17)
    sum e = 2.5920013172315075
    sum de = -7.860465750519907e-19
Info: CFL hydro = 0.011143846723047067 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011143846723047067 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7081e+04 |  512 |      1 | 2.998e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1338.544272293796 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.800091064261494, dt = 0.011143846723047067 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 us    (1.1%)
   patch tree reduce : 901.00 ns  (0.2%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.3%)
   LB compute        : 357.43 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.626084671582875e-17,-6.806079137777754e-17,-8.723490679818368e-19)
    sum a = (3.749344584802472e-17,-6.179041653342487e-17,4.472691748219626e-17)
    sum e = 2.592001314447143
    sum de = -5.692061405548898e-19
Info: CFL hydro = 0.011142773231052838 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011142773231052838 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6998e+04 |  512 |      1 | 3.012e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1331.8492378329424 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.811234910984542, dt = 0.011142773231052838 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.97 us    (1.0%)
   patch tree reduce : 1022.00 ns (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 671.00 ns  (0.2%)
   LB compute        : 379.31 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7509359727554436e-17,-6.840621818993143e-17,3.732365978781349e-19)
    sum a = (4.639843197151716e-17,1.3292492107019883e-16,1.2995512868943514e-16)
    sum e = 2.5920013126196904
    sum de = -6.708500942254059e-19
Info: CFL hydro = 0.011142065866175048 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011142065866175048 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6369e+04 |  512 |      1 | 3.128e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1282.495856497953 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.822377684215594, dt = 0.011142065866175048 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.46 us    (0.9%)
   patch tree reduce : 922.00 ns  (0.2%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.2%)
   LB compute        : 381.89 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.79 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.808604686309947e-17,-6.612288841467695e-17,2.289184466985894e-18)
    sum a = (8.262140971382337e-17,1.0578257020332771e-16,2.6668120836625952e-17)
    sum e = 2.5920013118343186
    sum de = -1.3484764520288461e-18
Info: CFL hydro = 0.011141742563006167 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011141742563006167 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6457e+04 |  512 |      1 | 3.111e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1289.3061852089052 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.833519750081768, dt = 0.011141742563006167 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.71 us    (1.0%)
   patch tree reduce : 1162.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 651.00 ns  (0.2%)
   LB compute        : 372.04 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9286258668040924e-17,-6.493438599319834e-17,1.987667842817675e-18)
    sum a = (-1.5102762790375478e-16,9.688343877156669e-17,-3.443436941835687e-17)
    sum e = 2.592001312092786
    sum de = -2.961227183601034e-18
Info: CFL hydro = 0.011141818633051163 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011141818633051163 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6296e+04 |  512 |      1 | 3.142e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1276.601393456856 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.844661492644775, dt = 0.011141818633051163 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.41 us    (0.8%)
   patch tree reduce : 621.00 ns  (0.2%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.2%)
   LB compute        : 397.37 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.81 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.63150026143444e-17,-6.4006417353768e-17,1.3751207204176773e-18)
    sum a = (1.5123839680608596e-16,-2.7762948190401813e-17,4.459518691823927e-17)
    sum e = 2.59200131331735
    sum de = -6.166399856011306e-19
Info: CFL hydro = 0.011142306672568072 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011142306672568072 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6114e+04 |  512 |      1 | 3.177e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1262.3797393233726 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.855803311277826, dt = 0.011142306672568072 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.95 us    (1.0%)
   patch tree reduce : 1322.00 ns (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 394.43 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9619976096731966e-17,-6.505147982782678e-17,2.2716203917916287e-18)
    sum a = (9.994544254710024e-17,-1.7971561738772124e-16,-4.5301409108342017e-17)
    sum e = 2.5920013153603594
    sum de = 1.0977546996415732e-18
Info: CFL hydro = 0.011143215751458681 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011143215751458681 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6196e+04 |  512 |      1 | 3.161e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1268.8355672248597 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.866945617950394, dt = 0.011143215751458681 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.46 us    (0.9%)
   patch tree reduce : 1373.00 ns (0.4%)
   gen split merge   : 611.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 682.00 ns  (0.2%)
   LB compute        : 370.68 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.57 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0322539104502575e-17,-6.787636858823775e-17,1.3085236019727552e-18)
    sum a = (-2.6141198580797996e-17,2.8922177153223315e-17,2.4143285027450332e-18)
    sum e = 2.5920013180233417
    sum de = -8.470329472543003e-20
Info: CFL hydro = 0.011144257786965817 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011144257786965817 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3487e+04 |  512 |      1 | 3.796e-02 | 0.0% |   1.2% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1056.7418821776544 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.878088833701852, dt = 0.011144257786965817 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.33 us    (1.1%)
   patch tree reduce : 1332.00 ns (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 374.01 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.945019003652073e-17,-6.648295195615939e-17,1.5449067806289074e-18)
    sum a = (1.269121526620287e-16,2.60885063552152e-17,-3.629762506188183e-17)
    sum e = 2.592001321065239
    sum de = -1.0740377771184528e-18
Info: CFL hydro = 0.011144465537323511 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011144465537323511 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6475e+04 |  512 |      1 | 3.108e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1290.9621237556885 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.88923309148882, dt = 0.011144465537323511 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (1.2%)
   patch tree reduce : 1512.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1193.00 ns (0.3%)
   LB compute        : 380.86 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (72.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.153738763877258e-17,-6.594139297100288e-17,9.265049664974879e-19)
    sum a = (-4.885154780698287e-17,-9.479916851518055e-17,1.338243480874385e-16)
    sum e = 2.592001324218061
    sum de = 4.0657581468206416e-19
Info: CFL hydro = 0.011140879626279186 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011140879626279186 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5905e+04 |  512 |      1 | 3.219e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1246.3375215527026 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.900377557026143, dt = 0.011140879626279186 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.0%)
   patch tree reduce : 1323.00 ns (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 23.11 us   (5.0%)
   LB compute        : 425.24 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9864409476518824e-17,-6.770365518216082e-17,3.4045032418217325e-18)
    sum a = (-7.513325898933498e-17,-7.86168005695309e-17,-5.687613466136276e-17)
    sum e = 2.592001327188877
    sum de = 1.1722935989999517e-18
Info: CFL hydro = 0.011134750869114906 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011134750869114906 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5871e+04 |  512 |      1 | 3.226e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1243.2633338285368 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.911518436652422, dt = 0.011134750869114906 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (0.8%)
   patch tree reduce : 912.00 ns  (0.2%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 384.87 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9120863626628264e-17,-6.883653803219092e-17,1.797390361546469e-18)
    sum a = (5.203064541714486e-17,5.765700417104114e-17,2.433722169105368e-17)
    sum e = 2.5920013297740376
    sum de = 1.0842021724855044e-18
Info: CFL hydro = 0.01112930907190891 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01112930907190891 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6153e+04 |  512 |      1 | 3.170e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1264.645825429025 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.922653187521536, dt = 0.01112930907190891 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.67 us    (0.9%)
   patch tree reduce : 1293.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        : 398.05 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.79 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.035327623609254e-17,-6.756314258060669e-17,2.356513421897244e-18)
    sum a = (5.471209423013601e-17,-4.210694293238504e-17,-3.764786334244097e-17)
    sum e = 2.5920013318517854
    sum de = 1.6628844941378017e-18
Info: CFL hydro = 0.011125125647439388 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011125125647439388 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6125e+04 |  512 |      1 | 3.175e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1261.8636231803782 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.933782496593446, dt = 0.011125125647439388 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.05 us    (1.0%)
   patch tree reduce : 1562.00 ns (0.4%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 395.79 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 2.87 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0891907875383333e-17,-6.839450880646858e-17,1.625408791935956e-18)
    sum a = (-1.3991542299751635e-16,-6.62165634823797e-17,4.1874950772527453e-17)
    sum e = 2.5920013333182346
    sum de = 2.5986970821761934e-18
Info: CFL hydro = 0.011122228016231339 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011122228016231339 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5650e+04 |  512 |      1 | 3.272e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1224.1721268288456 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.944907622240885, dt = 0.011122228016231339 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.10 us    (1.1%)
   patch tree reduce : 1092.00 ns (0.3%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 651.00 ns  (0.2%)
   LB compute        : 369.08 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.845342876924619e-17,-6.90209608217307e-17,2.5716733430269922e-18)
    sum a = (-1.700787947978011e-17,6.931955010003321e-17,-9.65431348146778e-17)
    sum e = 2.5920013341282617
    sum de = -2.727446090158847e-19
Info: CFL hydro = 0.011120624674182109 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011120624674182109 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6111e+04 |  512 |      1 | 3.178e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1259.8959000048715 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.956029850257117, dt = 0.011120624674182109 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.16 us    (1.1%)
   patch tree reduce : 1051.00 ns (0.3%)
   gen split merge   : 702.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.2%)
   LB compute        : 372.15 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 2.85 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.870518051369732e-17,-6.748703158809821e-17,7.289091205620046e-19)
    sum a = (1.2186540838954318e-16,-3.8295538615229496e-17,6.55776702471883e-17)
    sum e = 2.5920013343054626
    sum de = -6.301925127571995e-19
Info: CFL hydro = 0.011120305228427359 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011120305228427359 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4583e+04 |  512 |      1 | 3.511e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1140.25118714112 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 12.9671504749313, dt = 0.011120305228427359 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (0.9%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 821.00 ns  (0.2%)
   LB compute        : 421.59 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.094460010096613e-17,-6.825106885904875e-17,2.352854239565105e-18)
    sum a = (3.885758902144598e-17,8.025025956259757e-17,7.09537409295663e-17)
    sum e = 2.592001333934267
    sum de = -4.573977915173222e-19
Info: CFL hydro = 0.01112124232198326 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01112124232198326 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5808e+04 |  512 |      1 | 3.239e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1236.0525317274257 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.978270780159727, dt = 0.01112124232198326 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.40 us    (0.8%)
   patch tree reduce : 811.00 ns  (0.2%)
   gen split merge   : 672.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 393.30 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.81 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.521484375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.110267677771452e-17,-6.690448976082175e-17,3.220812288748376e-18)
    sum a = (-4.585394564049494e-17,2.2806951639753326e-17,9.173570106671413e-17)
    sum e = 2.592001333155222
    sum de = -3.1170812458958252e-19
Info: CFL hydro = 0.011123393027483403 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011123393027483403 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6195e+04 |  512 |      1 | 3.161e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1266.422793188466 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.989392022481711, dt = 0.010607977518288791 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.35 us    (0.8%)
   patch tree reduce : 811.00 ns  (0.2%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 661.00 ns  (0.2%)
   LB compute        : 401.48 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.58 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.521484375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.992588373969875e-17,-6.706256643757014e-17,4.370527377506317e-18)
    sum a = (-3.2821401846350183e-17,-1.3394510110439906e-16,-1.1242471797262565e-17)
    sum e = 2.592001324285968
    sum de = 1.294266343404571e-18
Info: CFL hydro = 0.011124581126056533 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011124581126056533 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5991e+04 |  512 |      1 | 3.202e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1192.7462686181445 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 1524                                                    [SPH][rank=0]
Info: time since start : 777.0212975520001 (s)                                        [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.1498919295120851 max=0.1501140326871106 delta=0.00022210317502549537
Number of particle pairs: 130816
Distance min=0.132174 max=1.984509 mean=0.801474
---------------- t = 13, dt = 0.011124581126056533 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.58 us   (1.6%)
   patch tree reduce : 1783.00 ns (0.3%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.1%)
   LB compute        : 626.21 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 4.79 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.77 us    (76.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.521484375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.964778588245622e-17,-6.950104554370728e-17,3.626981527615758e-18)
    sum a = (-6.436355354938472e-17,-1.8455452010374128e-17,-1.1012675146804263e-17)
    sum e = 2.592001331055592
    sum de = -3.3203691532368573e-19
Info: CFL hydro = 0.011125961089988052 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011125961089988052 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3246e+04 |  512 |      1 | 3.865e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1036.0967195012288 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.011124581126056, dt = 0.011125961089988052 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (0.5%)
   patch tree reduce : 1112.00 ns (0.2%)
   gen split merge   : 641.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1033.00 ns (0.2%)
   LB compute        : 618.71 us  (97.9%)
   LB move op cnt    : 0
   LB apply          : 2.56 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.521484375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.871103520542874e-17,-6.893606779162509e-17,3.5918533772272274e-18)
    sum a = (-1.6915082615837075e-16,-6.366977257921125e-18,-4.03183346084357e-17)
    sum e = 2.592001330158848
    sum de = -4.743384504624082e-19
Info: CFL hydro = 0.011127199431676832 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011127199431676832 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3822e+04 |  512 |      1 | 3.704e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1081.2495726047116 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.022250542216044, dt = 0.011127199431676832 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (1.1%)
   patch tree reduce : 1632.00 ns (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 371.99 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.521484375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.609398800148323e-17,-6.889801229537085e-17,2.9258821927780065e-18)
    sum a = (-7.970577323157534e-17,4.388091452700582e-17,-3.629908873481469e-17)
    sum e = 2.5920013295901274
    sum de = -3.6591823321385775e-19
Info: CFL hydro = 0.01112794238412727 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01112794238412727 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5779e+04 |  512 |      1 | 3.245e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1234.513019828696 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.03337774164772, dt = 0.01112794238412727 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.33 us    (1.1%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 377.56 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.521484375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.583638156530068e-17,-6.80754281071061e-17,2.5423998843698837e-18)
    sum a = (2.963644954445677e-17,-6.364049912055414e-18,1.7992638629005242e-16)
    sum e = 2.5920013295333293
    sum de = -1.1384122811097797e-18
Info: CFL hydro = 0.011129308466892274 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011129308466892274 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5773e+04 |  512 |      1 | 3.246e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1234.1484687253096 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.044505684031847, dt = 0.011129308466892274 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.3%)
   patch tree reduce : 1422.00 ns (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 370.79 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.521484375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6711657979148224e-17,-6.829790639290012e-17,5.743452588524711e-18)
    sum a = (1.4219582542690513e-16,2.8219614145452708e-18,-3.8336521457349447e-17)
    sum e = 2.5920013301197353
    sum de = 1.3552527156068805e-18
Info: CFL hydro = 0.011131267039833094 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011131267039833094 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5614e+04 |  512 |      1 | 3.279e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1221.8326182553521 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.055634992498739, dt = 0.011131267039833094 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.10 us    (1.0%)
   patch tree reduce : 1242.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 374.84 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9024261213059804e-17,-6.823643212972019e-17,4.010463836023881e-18)
    sum a = (-1.2787159026951544e-16,1.8225655359915827e-17,7.554894210226593e-17)
    sum e = 2.5920013314044703
    sum de = 1.8973538018496328e-19
Info: CFL hydro = 0.01113377659719821 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01113377659719821 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6008e+04 |  512 |      1 | 3.198e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1252.9066026552398 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.066766259538571, dt = 0.01113377659719821 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.04 us    (1.0%)
   patch tree reduce : 962.00 ns  (0.2%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 384.41 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (73.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.579832606904644e-17,-6.814861175374886e-17,5.6117220245677224e-18)
    sum a = (-1.2473420733793983e-17,7.121647022101385e-17,6.214169803731017e-17)
    sum e = 2.592001333376421
    sum de = 2.236166980751353e-18
Info: CFL hydro = 0.011136786895837037 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011136786895837037 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7042e+04 |  512 |      1 | 3.004e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1334.1442091863341 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.07790003613577, dt = 0.011136786895837037 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.78 us    (1.0%)
   patch tree reduce : 1784.00 ns (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 363.24 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.643356012190569e-17,-6.698645544506166e-17,6.1210802052014125e-18)
    sum a = (-1.1342806576809804e-16,6.609946964775126e-17,-2.1188129376015218e-17)
    sum e = 2.592001335958373
    sum de = -1.6263032587282567e-19
Info: CFL hydro = 0.011140239949636335 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011140239949636335 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7271e+04 |  512 |      1 | 2.965e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1352.3767557446242 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.089036823031607, dt = 0.011140239949636335 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 us    (1.1%)
   patch tree reduce : 1202.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        : 354.83 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 2.85 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.459811426410498e-17,-6.628389243729105e-17,5.479991460610733e-18)
    sum a = (-8.436610784978703e-18,9.003344944580327e-17,-1.8721547749567247e-16)
    sum e = 2.592001339007307
    sum de = 1.497554250745603e-18
Info: CFL hydro = 0.01114407082809751 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01114407082809751 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6234e+04 |  512 |      1 | 3.154e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1271.5707247213877 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.100177062981244, dt = 0.01114407082809751 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (1.1%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 404.33 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5127963865798645e-17,-6.517735570005234e-17,2.400423609882907e-18)
    sum a = (8.455638533105824e-18,-1.1691819387649181e-16,-1.535100171978776e-17)
    sum e = 2.592001342328094
    sum de = -6.098637220230962e-19
Info: CFL hydro = 0.011148208009473413 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011148208009473413 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7172e+04 |  512 |      1 | 2.982e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1345.5274329491351 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.11132113380934, dt = 0.011148208009473413 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (1.1%)
   patch tree reduce : 1874.00 ns (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 387.70 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.537386091851836e-17,-6.797589834767192e-17,3.351811016238937e-18)
    sum a = (2.5479618415147344e-17,1.3975149162903655e-16,-2.9367133724811365e-17)
    sum e = 2.5920013456879496
    sum de = 3.8624702394796095e-19
Info: CFL hydro = 0.011137557620960005 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011137557620960005 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7209e+04 |  512 |      1 | 2.975e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1348.9378443400285 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.122469341818814, dt = 0.011137557620960005 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.34 us    (1.1%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 393.10 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5681232234418e-17,-6.479094604577851e-17,2.9668650348979586e-18)
    sum a = (-4.41048564857327e-17,-1.086630785351872e-17,1.0930709462564358e-16)
    sum e = 2.592001348578681
    sum de = -4.404571325722362e-19
Info: CFL hydro = 0.011126030536554284 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011126030536554284 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7326e+04 |  512 |      1 | 2.955e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1356.8369911157845 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.133606899439775, dt = 0.011126030536554284 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.47 us    (1.1%)
   patch tree reduce : 1293.00 ns (0.3%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 385.64 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.483230193336185e-17,-6.590919216648005e-17,4.879885558140007e-18)
    sum a = (-2.277035981643194e-17,3.725925817876785e-17,-8.901473308453589e-17)
    sum e = 2.592001350967324
    sum de = 3.3881317890172014e-20
Info: CFL hydro = 0.011115461724353059 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011115461724353059 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4412e+04 |  512 |      1 | 3.553e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1127.4651425724371 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.144732929976328, dt = 0.011115461724353059 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.77 us    (0.9%)
   patch tree reduce : 1292.00 ns (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 406.53 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.466837056488204e-17,-6.553741924153478e-17,2.978574418360802e-18)
    sum a = (4.146292684192865e-17,-7.402086756036485e-17,-7.471757587640404e-17)
    sum e = 2.5920013526722046
    sum de = -5.454892180317694e-19
Info: CFL hydro = 0.011105994929856085 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011105994929856085 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5751e+04 |  512 |      1 | 3.251e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1230.9930529540977 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.155848391700681, dt = 0.011105994929856085 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.3%)
   patch tree reduce : 1994.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 434.80 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.551144617420677e-17,-6.649758868548794e-17,2.169163286491749e-18)
    sum a = (-4.539727968544405e-17,2.963644954445677e-17,-7.611099250848241e-18)
    sum e = 2.592001353523155
    sum de = -8.165397611531455e-19
Info: CFL hydro = 0.011097761387311231 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011097761387311231 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5852e+04 |  512 |      1 | 3.230e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1237.8652439607044 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.166954386630538, dt = 0.011097761387311231 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.57 us    (0.9%)
   patch tree reduce : 842.00 ns  (0.2%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.2%)
   LB compute        : 373.09 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4437110241490886e-17,-6.561645757990898e-17,2.4121329933457504e-18)
    sum a = (3.436996780931123e-17,-7.729949492996102e-17,-4.683753385137379e-17)
    sum e = 2.592001353412487
    sum de = -2.591920818598159e-19
Info: CFL hydro = 0.01109087654234785 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01109087654234785 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6250e+04 |  512 |      1 | 3.151e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1267.9693308614717 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.17805214801785, dt = 0.01109087654234785 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.69 us    (0.9%)
   patch tree reduce : 952.00 ns  (0.2%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 762.00 ns  (0.2%)
   LB compute        : 373.67 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5048925527424453e-17,-6.714453212181004e-17,1.5661300381553112e-18)
    sum a = (-1.0659051766226391e-16,-2.8775809859937776e-17,1.0748043080544001e-16)
    sum e = 2.592001352303395
    sum de = -3.3034284942917713e-20
Info: CFL hydro = 0.011085439393077528 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011085439393077528 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6096e+04 |  512 |      1 | 3.181e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1255.189517488829 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.189143024560197, dt = 0.011085439393077528 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.91 us    (0.9%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 400.67 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.292367242891837e-17,-6.708891255036153e-17,3.603562760690071e-18)
    sum a = (-4.1591730060019925e-17,-5.0426459882735306e-17,5.616991247126002e-17)
    sum e = 2.592001350233583
    sum de = 3.7348859017994306e-19
Info: CFL hydro = 0.011081531948040575 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011081531948040575 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5484e+04 |  512 |      1 | 3.307e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1206.9306822964568 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.200228463953275, dt = 0.011081531948040575 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.1%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 413.54 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.316371478990666e-17,-6.762754418965234e-17,4.1246303247866044e-18)
    sum a = (-2.730628223535092e-17,-2.8822647393789145e-17,4.1802498962351106e-18)
    sum e = 2.592001347319313
    sum de = 1.1206245892174393e-18
Info: CFL hydro = 0.011079216670054242 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011079216670054242 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6285e+04 |  512 |      1 | 3.144e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1268.8990137285405 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.211309995901315, dt = 0.011079216670054242 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.2%)
   patch tree reduce : 1212.00 ns (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 711.00 ns  (0.2%)
   LB compute        : 368.45 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.299978342142685e-17,-6.792613346795485e-17,3.785058204364145e-18)
    sum a = (-1.1648787403423234e-16,7.383937211669078e-17,-1.5175360967845107e-17)
    sum e = 2.592001343743392
    sum de = 1.0249098661777034e-18
Info: CFL hydro = 0.011078534466736983 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011078534466736983 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6264e+04 |  512 |      1 | 3.148e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1267.0059081947027 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.22238921257137, dt = 0.011078534466736983 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.13 us    (1.1%)
   patch tree reduce : 881.00 ns  (0.2%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 751.00 ns  (0.2%)
   LB compute        : 377.99 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.103553434553486e-17,-6.676690450513334e-17,3.559652572704408e-18)
    sum a = (-9.371605054486754e-17,1.9430258183655847e-17,1.9149525715134174e-16)
    sum e = 2.5920013397435495
    sum de = 2.846030702774449e-19
Info: CFL hydro = 0.011079505598861443 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011079505598861443 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6224e+04 |  512 |      1 | 3.156e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1263.7769475848547 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.233467747038107, dt = 0.011079505598861443 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.56 us    (0.9%)
   patch tree reduce : 912.00 ns  (0.2%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 712.00 ns  (0.2%)
   LB compute        : 393.93 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.011634774370165e-17,-6.675226777580479e-17,6.738750182866404e-18)
    sum a = (-9.333988660112369e-17,2.1138364496298133e-17,-3.6790882840254115e-17)
    sum e = 2.5920013356029323
    sum de = 4.54009659728305e-19
Info: CFL hydro = 0.011082128529991304 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011082128529991304 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6384e+04 |  512 |      1 | 3.125e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1276.368888345705 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.244547252636968, dt = 0.011082128529991304 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (0.8%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 386.32 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.908884934483714e-17,-6.645367849750228e-17,5.1433466860539845e-18)
    sum a = (1.3949242151992114e-16,1.8971103984619097e-16,9.805437711785103e-17)
    sum e = 2.5920013316263937
    sum de = -1.3654171109739321e-18
Info: CFL hydro = 0.011086379386442404 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011086379386442404 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6305e+04 |  512 |      1 | 3.140e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1270.5345872325956 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.25562938116696, dt = 0.011086379386442404 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (0.9%)
   patch tree reduce : 551.00 ns  (0.1%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 511.00 ns  (0.1%)
   LB compute        : 363.77 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.63 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1995703789488024e-17,-6.354096936111997e-17,6.96122846866043e-18)
    sum a = (-1.384824871962509e-16,9.607695498556335e-17,7.700090565165851e-17)
    sum e = 2.5920013281193253
    sum de = 2.778268066994105e-19
Info: CFL hydro = 0.011092212100398366 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011092212100398366 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6576e+04 |  512 |      1 | 3.089e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1292.0951747416125 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.266715760553403, dt = 0.011092212100398366 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (0.8%)
   patch tree reduce : 581.00 ns  (0.1%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 542.00 ns  (0.1%)
   LB compute        : 386.02 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.69 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8834170254520297e-17,-6.28471883909465e-17,7.619881288445374e-18)
    sum a = (4.2013267864682293e-17,-7.013920694243225e-18,-1.0702376485038911e-16)
    sum e = 2.5920013253642042
    sum de = 1.2197274440461925e-19
Info: CFL hydro = 0.011099491064338171 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011099491064338171 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6091e+04 |  512 |      1 | 3.182e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1254.9817248205898 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.277807972653802, dt = 0.011099491064338171 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.57 us    (0.9%)
   patch tree reduce : 802.00 ns  (0.2%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 691.00 ns  (0.2%)
   LB compute        : 385.57 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.048226597691551e-17,-6.361708035362845e-17,5.441935964356492e-18)
    sum a = (-1.2177905168650472e-16,4.904767997998549e-17,-8.196568423990414e-17)
    sum e = 2.5920013236031014
    sum de = 1.8228149024912543e-18
Info: CFL hydro = 0.01110150784434584 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01110150784434584 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6127e+04 |  512 |      1 | 3.175e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1258.5865724457008 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.28890746371814, dt = 0.01110150784434584 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (0.8%)
   patch tree reduce : 661.00 ns  (0.2%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 611.00 ns  (0.2%)
   LB compute        : 382.41 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.85 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.810379746102543e-17,-6.274765863151233e-17,4.6778986934059575e-18)
    sum a = (-1.1196219732584335e-16,-1.901603874365776e-17,4.158002067655708e-17)
    sum e = 2.5920013229376013
    sum de = -2.168404344971009e-19
Info: CFL hydro = 0.011104975154594339 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011104975154594339 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6334e+04 |  512 |      1 | 3.135e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1274.964040103371 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.300008971562486, dt = 0.011104975154594339 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.66 us    (0.9%)
   patch tree reduce : 1122.00 ns (0.3%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 372.36 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.83 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.688602158088972e-17,-6.335654657158018e-17,5.84005500209317e-18)
    sum a = (3.0625892447067037e-17,-1.592476150946709e-17,-1.1065367372387058e-17)
    sum e = 2.59200132355362
    sum de = -3.049318610115481e-19
Info: CFL hydro = 0.011107304555295242 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011107304555295242 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6056e+04 |  512 |      1 | 3.189e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1253.6468528852763 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.31111394671708, dt = 0.011107304555295242 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (0.8%)
   patch tree reduce : 561.00 ns  (0.1%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 561.00 ns  (0.1%)
   LB compute        : 365.05 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.52 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (73.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8017440757986965e-17,-6.345900367688007e-17,5.441935964356492e-18)
    sum a = (1.1939765582474893e-16,4.972975156669612e-17,-5.4401795568370656e-17)
    sum e = 2.59200132543609
    sum de = 3.5914196963582334e-19
Info: CFL hydro = 0.011109619644218681 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011109619644218681 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6944e+04 |  512 |      1 | 3.022e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1323.3256642082831 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.322221251272376, dt = 0.011109619644218681 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (0.7%)
   patch tree reduce : 501.00 ns  (0.1%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 501.00 ns  (0.1%)
   LB compute        : 392.36 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.28 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.995680739402041e-17,-6.235539428550707e-17,4.511039979060438e-18)
    sum a = (1.1447532375155612e-16,-4.3219334361355165e-17,-3.3559093004509324e-17)
    sum e = 2.5920013285228403
    sum de = 2.4936649967166602e-18
Info: CFL hydro = 0.01111268800156067 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01111268800156067 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6443e+04 |  512 |      1 | 3.114e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1284.4307608251022 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.333330870916594, dt = 0.01111268800156067 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (0.9%)
   patch tree reduce : 521.00 ns  (0.1%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 621.00 ns  (0.2%)
   LB compute        : 354.28 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.36 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.129899547344884e-17,-6.327458088734028e-17,4.297343730863546e-18)
    sum a = (-5.684173834744067e-17,-7.481125094410678e-17,1.576083014098728e-17)
    sum e = 2.592001332661979
    sum de = 7.115076756936123e-19
Info: CFL hydro = 0.011116461576164804 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011116461576164804 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6109e+04 |  512 |      1 | 3.178e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1258.6680602429592 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.344443558918154, dt = 0.011116461576164804 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.24 us    (0.8%)
   patch tree reduce : 762.00 ns  (0.2%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 387.67 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.65 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.940939371713248e-17,-6.429622459447337e-17,4.835975370154344e-18)
    sum a = (5.918068769414364e-17,4.787966897956686e-17,9.109900334092203e-17)
    sum e = 2.5920013376173383
    sum de = 5.55653613398821e-19
Info: CFL hydro = 0.011120886222289024 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011120886222289024 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5975e+04 |  512 |      1 | 3.205e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1248.6219640584711 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.35556002049432, dt = 0.011120886222289024 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (0.8%)
   patch tree reduce : 481.00 ns  (0.1%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 621.00 ns  (0.2%)
   LB compute        : 387.55 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.73 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0827692789069394e-17,-6.308430340606908e-17,6.211827927038449e-18)
    sum a = (-5.637116749952764e-17,8.018585795355193e-17,-9.629796959842452e-17)
    sum e = 2.5920013430914994
    sum de = -5.488773498207866e-19
Info: CFL hydro = 0.011125902072626346 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011125902072626346 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6885e+04 |  512 |      1 | 3.032e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1320.3148108982618 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.366680906716608, dt = 0.011125902072626346 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (0.7%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 531.00 ns  (0.1%)
   LB compute        : 390.69 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.20 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.966846382624789e-17,-6.199533074402464e-17,4.092429520263785e-18)
    sum a = (1.7377237344386175e-16,5.1872568740396475e-18,4.215378046623641e-19)
    sum e = 2.592001348746669
    sum de = 1.0164395367051604e-19
Info: CFL hydro = 0.011119066373265193 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011119066373265193 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6320e+04 |  512 |      1 | 3.137e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1276.6649935303305 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.377806808789234, dt = 0.011119066373265193 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (0.8%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 561.00 ns  (0.1%)
   LB compute        : 397.17 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.54 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.277584146269997e-17,-6.24724881201355e-17,4.513967324926149e-18)
    sum a = (-7.559212045378516e-17,8.666700170023578e-17,-9.601694439531628e-18)
    sum e = 2.5920013540362805
    sum de = 4.1335207826009857e-19
Info: CFL hydro = 0.011111951366789743 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011111951366789743 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6170e+04 |  512 |      1 | 3.166e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1264.1538470935361 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.3889258751625, dt = 0.011111951366789743 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (0.7%)
   patch tree reduce : 852.00 ns  (0.2%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.2%)
   LB compute        : 403.12 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.46 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.059496879274538e-17,-6.114054575123707e-17,4.391018798566293e-18)
    sum a = (2.3665395814873037e-17,3.3535674237583636e-17,-3.728853163742496e-17)
    sum e = 2.592001358771632
    sum de = 7.860465750519907e-19
Info: CFL hydro = 0.011105427107623807 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011105427107623807 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6606e+04 |  512 |      1 | 3.083e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1297.4220525754497 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.400037826529289, dt = 0.011105427107623807 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.69 us    (1.0%)
   patch tree reduce : 791.00 ns  (0.2%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 370.89 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.154050150736999e-17,-6.102637926247434e-17,3.799694933692699e-18)
    sum a = (1.205268794924469e-16,1.0128616695359583e-17,3.419139971150287e-17)
    sum e = 2.59200136267216
    sum de = -8.876905287225068e-19
Info: CFL hydro = 0.011099584291600587 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011099584291600587 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6541e+04 |  512 |      1 | 3.095e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1291.5817933657706 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.411143253636913, dt = 0.011099584291600587 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.40 us    (0.9%)
   patch tree reduce : 722.00 ns  (0.2%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 731.00 ns  (0.2%)
   LB compute        : 380.49 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.45 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.321055232375803e-17,-6.133082323250827e-17,4.75400968591444e-18)
    sum a = (-4.3238362109482285e-17,-7.799034855426878e-17,-2.0157703631284995e-17)
    sum e = 2.5920013655003658
    sum de = 8.063753657860939e-19
Info: CFL hydro = 0.011094506341050537 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011094506341050537 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6466e+04 |  512 |      1 | 3.109e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1285.073710220144 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.422242837928513, dt = 0.011094506341050537 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.61 us    (0.8%)
   patch tree reduce : 1102.00 ns (0.3%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 671.00 ns  (0.2%)
   LB compute        : 420.62 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.188446464659101e-17,-6.254859911264399e-17,4.2329421218179066e-18)
    sum a = (-2.5834559101364783e-17,-2.2381315550878965e-16,7.467659303428409e-17)
    sum e = 2.592001367100952
    sum de = 9.622294280808852e-19
Info: CFL hydro = 0.011090267563662696 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011090267563662696 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6620e+04 |  512 |      1 | 3.081e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1296.5133861754896 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.433337344269564, dt = 0.011090267563662696 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 us    (0.9%)
   patch tree reduce : 701.00 ns  (0.2%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 491.00 ns  (0.1%)
   LB compute        : 365.16 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.44 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.150098233818289e-17,-6.590626482061435e-17,5.556102453119216e-18)
    sum a = (-4.850026630309756e-17,1.5264059547576146e-16,2.846843854403813e-17)
    sum e = 2.592001367403425
    sum de = 4.675621868843738e-19
Info: CFL hydro = 0.011086933078928404 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011086933078928404 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6381e+04 |  512 |      1 | 3.126e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1277.334323160977 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.444427611833227, dt = 0.011086933078928404 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (0.9%)
   patch tree reduce : 1273.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 414.48 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0950641315429245e-17,-6.208607846586167e-17,5.6380681373591204e-18)
    sum a = (4.516821487145217e-17,6.726894432110275e-17,-3.701628847191385e-17)
    sum e = 2.59200136643446
    sum de = 8.82608331038981e-19
Info: CFL hydro = 0.011083910791696223 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011083910791696223 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6205e+04 |  512 |      1 | 3.160e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1263.2260288236062 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.455514544912155, dt = 0.011083910791696223 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.17 us    (1.0%)
   patch tree reduce : 1272.00 ns (0.3%)
   gen split merge   : 652.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 394.36 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.194008421803952e-17,-6.17699251123649e-17,4.917941054394248e-18)
    sum a = (4.2497743605457435e-18,-3.91327595328228e-17,9.622990880704674e-17)
    sum e = 2.592001364297577
    sum de = -5.497243827680409e-19
Info: CFL hydro = 0.011081561986464667 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011081561986464667 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6177e+04 |  512 |      1 | 3.165e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1260.7608978129877 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.466598455703851, dt = 0.011081561986464667 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.25 us    (1.0%)
   patch tree reduce : 19.59 us   (4.7%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.3%)
   LB compute        : 384.79 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.170882389464836e-17,-6.293793611278353e-17,6.6919126490150306e-18)
    sum a = (-4.357427504757261e-17,-4.597396682098909e-18,3.701628847191385e-17)
    sum e = 2.5920013611970334
    sum de = 8.470329472543003e-21
Info: CFL hydro = 0.011080297960378706 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011080297960378706 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5918e+04 |  512 |      1 | 3.217e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1240.277904939383 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.477680017690316, dt = 0.011080297960378706 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (1.1%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 380.30 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.117604694708898e-17,-6.269203906006382e-17,6.6333657317008135e-18)
    sum a = (1.6817967916742115e-16,-9.24690012060747e-17,1.2077350838163304e-16)
    sum e = 2.592001357405772
    sum de = 4.946672411965114e-19
Info: CFL hydro = 0.01108014924503203 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01108014924503203 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6019e+04 |  512 |      1 | 3.196e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1247.9846927431347 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.488760315650694, dt = 0.01108014924503203 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.48 us    (1.0%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 1072.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 416.07 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (73.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509765625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4381490670042376e-17,-6.421425891023347e-17,8.331226333813113e-18)
    sum a = (6.757338829113668e-17,-8.862246873853064e-17,-1.59276888553328e-17)
    sum e = 2.592001353238406
    sum de = -8.131516293641283e-19
Info: CFL hydro = 0.011081130416872321 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011081130416872321 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6068e+04 |  512 |      1 | 3.186e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1251.8377263218342 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.499840464895726, dt = 0.00015953510427380024 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.34 us    (0.9%)
   patch tree reduce : 842.00 ns  (0.2%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 370.69 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509765625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.384285903075158e-17,-6.437526293284756e-17,7.575971100459711e-18)
    sum a = (-1.0983145545383905e-16,6.949519085197586e-18,4.581881749010641e-17)
    sum e = 2.592001270237283
    sum de = 1.5111067779016718e-18
Info: CFL hydro = 0.011081710116859787 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011081710116859787 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7024e+04 |  512 |      1 | 3.007e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.09653800572474 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1570                                                    [SPH][rank=0]
Info: time since start : 779.4099158 (s)                                              [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.1498883838311185 max=0.15010646807973965 delta=0.00021808424862115872
Number of particle pairs: 130816
Distance min=0.131542 max=1.980027 mean=0.801147
---------------- t = 13.5, dt = 0.011081710116859787 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.92 us   (1.6%)
   patch tree reduce : 1673.00 ns (0.2%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.1%)
   LB compute        : 656.23 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 4.75 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (82.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509765625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2502134624256e-17,-6.401519939136513e-17,8.0853292810934e-18)
    sum a = (-2.4523839989992746e-17,-1.1677182658320628e-16,-4.7832831445715485e-17)
    sum e = 2.5920013502754
    sum de = -7.013432803265607e-19
Info: CFL hydro = 0.011083278477026889 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011083278477026889 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4386e+04 |  512 |      1 | 3.559e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1120.8975580155138 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.51108171011686, dt = 0.011083278477026889 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1413.00 ns (0.3%)
   LB compute        : 429.70 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509765625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.270704883485577e-17,-6.626047367036536e-17,6.955373776929008e-18)
    sum a = (5.374460642151857e-17,9.824758194498795e-17,-9.051353416777986e-17)
    sum e = 2.592001345812856
    sum de = -6.844026213814747e-19
Info: CFL hydro = 0.011086511867854256 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011086511867854256 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5661e+04 |  512 |      1 | 3.269e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1220.4352312978401 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.522164988593888, dt = 0.011086511867854256 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 410.47 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.57 us    (73.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509765625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.377845742170594e-17,-6.374295622585401e-17,5.6966150546733376e-18)
    sum a = (1.0394126965379557e-16,-2.1147146533895267e-17,5.779751677259526e-17)
    sum e = 2.592001342560317
    sum de = -1.3484764520288461e-18
Info: CFL hydro = 0.011079299193014236 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011079299193014236 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5348e+04 |  512 |      1 | 3.336e-02 | 0.1% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1196.4265199073805 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.533251500461741, dt = 0.011079299193014236 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 1612.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 413.82 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.25 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509765625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.506941694848443e-17,-6.466214282768723e-17,7.183706754454455e-18)
    sum a = (-5.475600441812167e-17,6.691912649015031e-17,5.96710181266502e-17)
    sum e = 2.592001340094402
    sum de = -2.303929616531697e-19
Info: CFL hydro = 0.011072765844984862 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011072765844984862 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5476e+04 |  512 |      1 | 3.308e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1205.5761634479738 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.544330799654755, dt = 0.011072765844984862 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (1.6%)
   patch tree reduce : 1884.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 421.00 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.03 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509765625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3637944820151817e-17,-6.345022163928294e-17,7.927252604345014e-18)
    sum a = (1.242131397738433e-16,-3.885173432971456e-17,5.138662932668847e-17)
    sum e = 2.5920013387524237
    sum de = -1.3010426069826053e-18
Info: CFL hydro = 0.01106742112588422 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01106742112588422 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5302e+04 |  512 |      1 | 3.346e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1191.3811078991146 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.55540356549974, dt = 0.01106742112588422 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 396.37 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509765625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.628426548275444e-17,-6.465043344422438e-17,8.290243491693161e-18)
    sum a = (-8.311905851099422e-17,8.317175073657701e-17,6.741092059558973e-17)
    sum e = 2.5920013386550367
    sum de = -8.470329472543003e-19
Info: CFL hydro = 0.011063328896039708 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011063328896039708 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5707e+04 |  512 |      1 | 3.260e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1222.3082322732657 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.566470986625625, dt = 0.011063328896039708 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.1%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 400.19 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509765625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3995081015768546e-17,-6.278571412776657e-17,9.168447251406419e-18)
    sum a = (6.540129765877922e-17,9.753916424548592e-17,1.0353436857846177e-16)
    sum e = 2.592001339826169
    sum de = -1.2536087619363645e-18
Info: CFL hydro = 0.011060533091127754 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011060533091127754 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5896e+04 |  512 |      1 | 3.221e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1236.5413843426918 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.577534315521664, dt = 0.011060533091127754 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.2%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 412.39 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (73.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509765625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5283113196681325e-17,-6.17699251123649e-17,1.0725795251964598e-17)
    sum a = (-3.1013765774273725e-17,5.924948032198785e-17,-1.5492685259688167e-16)
    sum e = 2.5920013421972206
    sum de = -1.4840017235895342e-18
Info: CFL hydro = 0.011059058415174535 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011059058415174535 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5189e+04 |  512 |      1 | 3.371e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1181.271563428458 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.588594848612791, dt = 0.011059058415174535 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (1.2%)
   patch tree reduce : 1674.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 378.94 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509765625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4706426061136283e-17,-6.153281009724231e-17,7.54084295007118e-18)
    sum a = (5.458036366617902e-18,4.152147375924287e-17,2.6779359979522966e-17)
    sum e = 2.5920013456098916
    sum de = -4.0657581468206416e-20
Info: CFL hydro = 0.011058909608048662 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011058909608048662 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6216e+04 |  512 |      1 | 3.157e-02 | 0.0% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1260.958040868525 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.599653907027966, dt = 0.011058909608048662 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.2%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 386.28 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509765625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.463470608742637e-17,-6.079511893908318e-17,8.726418025684079e-18)
    sum a = (4.9865873149451675e-17,-1.3196475162624565e-17,1.0965837612952889e-16)
    sum e = 2.592001349830505
    sum de = 6.572975670693371e-19
Info: CFL hydro = 0.011060071518441201 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011060071518441201 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5403e+04 |  512 |      1 | 3.324e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1197.7247781203416 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.610712816636013, dt = 0.011060071518441201 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.36 us    (1.1%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 380.51 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509765625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5586093493782396e-17,-6.130447711971687e-17,1.0573573266947634e-17)
    sum a = (8.437196254151846e-17,-3.1872941785859865e-17,-5.68139285617164e-17)
    sum e = 2.592001354566245
    sum de = -1.4907779871675686e-19
Info: CFL hydro = 0.011062509656352483 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011062509656352483 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6446e+04 |  512 |      1 | 3.113e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1278.9792139721446 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.621772888154455, dt = 0.011062509656352483 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.1%)
   patch tree reduce : 1684.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 419.36 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509765625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6790696317522416e-17,-6.197191197709895e-17,9.036716687449431e-18)
    sum a = (1.9071658315106266e-17,6.106443475872858e-17,-1.3207013607741126e-16)
    sum e = 2.5920013594856437
    sum de = -1.0842021724855044e-19
Info: CFL hydro = 0.011066170722264944 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011066170722264944 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5640e+04 |  512 |      1 | 3.274e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1216.5363005063791 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.632835397810807, dt = 0.011066170722264944 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 23.33 us   (5.5%)
   patch tree reduce : 1884.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 387.85 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.669994859568538e-17,-6.052580311943778e-17,7.136869220603081e-18)
    sum a = (2.9469590830111244e-17,2.5140046294724883e-17,7.742244345632088e-17)
    sum e = 2.5920013642429605
    sum de = -5.692061405548898e-19
Info: CFL hydro = 0.011070983381778716 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011070983381778716 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3744e+04 |  512 |      1 | 3.725e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1069.3902318139758 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.643901568533071, dt = 0.011070983381778716 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.3%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1343.00 ns (0.3%)
   LB compute        : 413.91 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7256144310170444e-17,-6.0584350036752e-17,9.022079958120876e-18)
    sum a = (-1.1668693355310068e-16,2.1451590503929196e-17,-2.3629535828018077e-17)
    sum e = 2.5920013685036203
    sum de = 7.724940478959219e-19
Info: CFL hydro = 0.011076859608322465 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011076859608322465 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5157e+04 |  512 |      1 | 3.378e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1179.8487633603997 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.654972551914849, dt = 0.011076859608322465 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.2%)
   patch tree reduce : 1904.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.2%)
   LB compute        : 437.46 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.75 us    (78.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4949395767990283e-17,-6.066046102926048e-17,8.272679416498895e-18)
    sum a = (-2.9902838018236456e-18,-1.6629666393930265e-16,-7.803718608812015e-17)
    sum e = 2.592001371967401
    sum de = 2.676624113323589e-19
Info: CFL hydro = 0.011083694902402734 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011083694902402734 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5477e+04 |  512 |      1 | 3.308e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1205.37927222552 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 13.666049411523172, dt = 0.011083694902402734 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1353.00 ns (0.3%)
   LB compute        : 401.54 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5760270572792197e-17,-6.337703799264016e-17,7.174924716857322e-18)
    sum a = (-8.846146471591654e-17,-5.615820308779717e-17,2.2400050564419514e-17)
    sum e = 2.5920013743905037
    sum de = 2.371692252312041e-19
Info: CFL hydro = 0.011091370691506376 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011091370691506376 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5395e+04 |  512 |      1 | 3.326e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1199.7824119335016 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.677133106425575, dt = 0.011091370691506376 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 393.69 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.400679039923139e-17,-6.350584121073143e-17,7.892124453956484e-18)
    sum a = (-1.01750151273311e-16,1.2449416497695155e-16,8.955336472382669e-17)
    sum e = 2.5920013756042892
    sum de = 1.229891839413244e-18
Info: CFL hydro = 0.011099755720495688 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011099755720495688 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5702e+04 |  512 |      1 | 3.261e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1224.5588500083602 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.688224477117082, dt = 0.011099755720495688 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.2%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 399.67 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.266460231980296e-17,-6.124593020240265e-17,9.215284785257793e-18)
    sum a = (4.272022189125146e-17,-8.091183972824823e-18,-8.79374698059543e-18)
    sum e = 2.5920013755310873
    sum de = -6.962610826430349e-19
Info: CFL hydro = 0.01110870809012437 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01110870809012437 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5499e+04 |  512 |      1 | 3.303e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1209.6303282243232 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.699324232837577, dt = 0.01110870809012437 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.1%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.3%)
   LB compute        : 416.75 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4075583027075596e-17,-6.166161331533359e-17,8.606396845189934e-18)
    sum a = (3.138114768042044e-18,4.206010539853366e-17,-6.016281223208963e-17)
    sum e = 2.592001374189538
    sum de = 1.8431436932253575e-18
Info: CFL hydro = 0.011114444144837525 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011114444144837525 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5713e+04 |  512 |      1 | 3.259e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1227.2927919050796 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.710432940927701, dt = 0.011114444144837525 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.1%)
   patch tree reduce : 1684.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 429.65 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (72.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.402874549322422e-17,-6.098246907448867e-17,7.628663326042506e-18)
    sum a = (-4.464934281675492e-17,-1.1207050912287463e-16,1.681701652933576e-16)
    sum e = 2.592001371633497
    sum de = 1.0043693172067866e-18
Info: CFL hydro = 0.011105686431205016 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011105686431205016 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5467e+04 |  512 |      1 | 3.310e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1208.7495964036916 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.721547385072538, dt = 0.011105686431205016 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1342.00 ns (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 384.84 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.41 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3173960500436647e-17,-6.31194315564576e-17,1.100682045507284e-17)
    sum a = (-7.216346660857132e-17,-7.032655707783775e-17,1.010344152091447e-16)
    sum e = 2.592001367901839
    sum de = -4.0318768289304696e-19
Info: CFL hydro = 0.01109601877963941 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01109601877963941 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5964e+04 |  512 |      1 | 3.207e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1246.5797380030215 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.732653071503744, dt = 0.01109601877963941 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.2%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 415.70 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.198106706015947e-17,-6.405032754175366e-17,1.1627417778603544e-17)
    sum a = (1.1356638286025289e-17,-2.0119648135030754e-17,-1.9875214755243896e-17)
    sum e = 2.5920013635111028
    sum de = 2.4275964268308248e-18
Info: CFL hydro = 0.011087749056373464 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011087749056373464 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5594e+04 |  512 |      1 | 3.283e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1216.6155507854073 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.743749090283384, dt = 0.011087749056373464 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (1.1%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.3%)
   LB compute        : 409.92 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.27026578160572e-17,-6.403276346655939e-17,1.0763850748218839e-17)
    sum a = (-2.941689860452845e-17,-3.2180313101759503e-17,-1.44727979600745e-17)
    sum e = 2.592001358829923
    sum de = 7.860465750519907e-19
Info: CFL hydro = 0.011080977270379403 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011080977270379403 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3856e+04 |  512 |      1 | 3.695e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1080.254389334922 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.754836839339758, dt = 0.011080977270379403 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.2%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 454.77 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.47 us    (76.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509765625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.196350298496521e-17,-6.367562727094267e-17,1.063212018426185e-17)
    sum a = (-2.5727564609973053e-16,1.368826926806399e-16,8.049469294238443e-17)
    sum e = 2.592001354214778
    sum de = 6.810144895924575e-19
Info: CFL hydro = 0.011075781322809414 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011075781322809414 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5350e+04 |  512 |      1 | 3.335e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1195.9826159304473 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.765917816610138, dt = 0.011075781322809414 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.38 us    (1.0%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 418.97 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509765625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.782423593085005e-17,-6.176114307476776e-17,1.2037246199803065e-17)
    sum a = (1.9630781375457042e-17,-2.865286133357792e-17,2.2091215575587018e-17)
    sum e = 2.592001350020468
    sum de = -2.0464316005663896e-18
Info: CFL hydro = 0.011072216533918175 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011072216533918175 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5642e+04 |  512 |      1 | 3.273e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1218.1575328032727 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.776993597932947, dt = 0.011072216533918175 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (1.1%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 412.95 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509765625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.949282307430524e-17,-6.252225299985258e-17,1.208701107952015e-17)
    sum a = (9.737523287700612e-17,1.6978606021123e-18,-8.784964942998297e-17)
    sum e = 2.592001346568011
    sum de = 7.115076756936123e-19
Info: CFL hydro = 0.011070315468487028 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011070315468487028 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5858e+04 |  512 |      1 | 3.229e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1234.5349186834235 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.788065814466865, dt = 0.011070315468487028 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.81 us    (1.0%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 379.19 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509765625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.11262820673719e-17,-6.251054361638975e-17,1.0310112139033655e-17)
    sum a = (1.3888499725278614e-16,-5.063137409333507e-17,-8.140948852541908e-18)
    sum e = 2.5920013441271057
    sum de = -9.961107459710572e-19
Info: CFL hydro = 0.01107008848228289 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01107008848228289 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5674e+04 |  512 |      1 | 3.266e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1220.0562347041032 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.799136129935352, dt = 0.01107008848228289 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.1%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 1052.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 433.68 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.24 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.517578125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.289147162439555e-17,-6.368733665440552e-17,1.0684812409844646e-17)
    sum a = (-1.6908349720345939e-16,-2.033919907495907e-17,5.1907696890785006e-17)
    sum e = 2.592001342898151
    sum de = 1.2197274440461925e-19
Info: CFL hydro = 0.011071524123126501 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011071524123126501 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5444e+04 |  512 |      1 | 3.315e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1202.0752716017294 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.810206218417635, dt = 0.011071524123126501 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.4%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 401.03 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.517578125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9618698946530807e-17,-6.391566963193096e-17,1.1630345124469255e-17)
    sum a = (-1.5760830140987282e-16,1.928535456330316e-17,-9.595839747800206e-18)
    sum e = 2.592001342999241
    sum de = 1.7957098481791167e-18
Info: CFL hydro = 0.01107458917915953 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01107458917915953 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5290e+04 |  512 |      1 | 3.349e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1190.2531069851002 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.821277742540762, dt = 0.01107458917915953 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 384.32 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.517578125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.804085952491265e-17,-6.31194315564576e-17,1.1115132252104143e-17)
    sum a = (4.238796813549328e-17,2.580748115210696e-17,1.7160101464797073e-17)
    sum e = 2.5920013444575334
    sum de = -1.6127507315721878e-18
Info: CFL hydro = 0.011079229802348834 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011079229802348834 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5177e+04 |  512 |      1 | 3.373e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1181.8159195168118 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.832352331719921, dt = 0.011079229802348834 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 426.51 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.05 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.517578125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9243998675719814e-17,-6.328336292493742e-17,1.154837944022935e-17)
    sum a = (7.956526063002123e-17,2.4917568008930855e-17,1.239438239541979e-16)
    sum e = 2.592001347205028
    sum de = -1.1993986533120893e-18
Info: CFL hydro = 0.01108537289546556 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01108537289546556 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5073e+04 |  512 |      1 | 3.397e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1174.2293985284725 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.84343156152227, dt = 0.01108537289546556 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 407.03 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.517578125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.078378260108373e-17,-6.289109857893216e-17,1.3497991786792785e-17)
    sum a = (4.044421048066127e-17,7.735218715554381e-17,6.226464656367003e-17)
    sum e = 2.592001351084541
    sum de = 1.362028979184915e-18
Info: CFL hydro = 0.011092926555583893 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011092926555583893 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5538e+04 |  512 |      1 | 3.295e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1211.099815706222 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.854516934417735, dt = 0.011092926555583893 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.5%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.2%)
   LB compute        : 393.54 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.04 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.517578125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.071938099203809e-17,-6.156208355589942e-17,1.3743888839512497e-17)
    sum a = (1.2192980999858883e-16,2.5292268279741848e-17,1.0725795251964598e-17)
    sum e = 2.592001355863081
    sum de = -3.2526065174565133e-19
Info: CFL hydro = 0.011101781577205018 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011101781577205018 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5205e+04 |  512 |      1 | 3.367e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1185.9081177372345 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.865609860973318, dt = 0.011101781577205018 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.3%)
   patch tree reduce : 1883.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 421.47 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.517578125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.241724159415039e-17,-6.149182725512237e-17,1.351848320785276e-17)
    sum a = (2.871140825089213e-17,-1.06508551978024e-16,1.1393230109346675e-17)
    sum e = 2.592001361244437
    sum de = -4.54009659728305e-19
Info: CFL hydro = 0.011111812976931517 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011111812976931517 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5331e+04 |  512 |      1 | 3.340e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1196.7474079406377 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.876711642550523, dt = 0.011111812976931517 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 429.04 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.517578125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.241724159415039e-17,-6.328921761666884e-17,1.3656068463541171e-17)
    sum a = (-5.214188456004187e-17,2.866457071704076e-17,-8.310149443579995e-17)
    sum e = 2.5920013668903295
    sum de = -1.2197274440461925e-19
Info: CFL hydro = 0.011122881774875948 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011122881774875948 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4940e+04 |  512 |      1 | 3.427e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1167.2656223806669 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.887823455527455, dt = 0.011122881774875948 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.5%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 421.33 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.47 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.517578125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.110286330044621e-17,-6.191629240565044e-17,1.2224596335208559e-17)
    sum a = (4.7692318844161365e-17,1.3266731463401625e-16,6.040870928480935e-17)
    sum e = 2.5920013724444093
    sum de = -1.260385025514399e-18
Info: CFL hydro = 0.01113483700495838 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01113483700495838 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4891e+04 |  512 |      1 | 3.438e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1164.5621707883124 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.89894633730233, dt = 0.01113483700495838 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 401.19 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.517578125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.191959279697954e-17,-5.999888086360982e-17,1.3623867659018352e-17)
    sum a = (1.2681262290259454e-17,1.252904030524249e-17,4.4343435173788135e-17)
    sum e = 2.5920013775576507
    sum de = 1.0028870095490916e-18
Info: CFL hydro = 0.011147518054097453 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011147518054097453 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5135e+04 |  512 |      1 | 3.383e-02 | 0.1% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1184.9457371643387 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.910081174307289, dt = 0.011147518054097453 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.2%)
   patch tree reduce : 1704.00 ns (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 430.22 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.52 us    (74.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.517578125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.222110942114776e-17,-6.054336719463205e-17,1.4004422621560764e-17)
    sum a = (1.1943571132100316e-17,1.8547663405144022e-17,8.349961347353663e-17)
    sum e = 2.5920013819136627
    sum de = -1.0503208545953324e-18
Info: CFL hydro = 0.011160757009213727 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011160757009213727 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5308e+04 |  512 |      1 | 3.345e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1199.8610134018147 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.921228692361385, dt = 0.011160757009213727 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.2%)
   patch tree reduce : 1994.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 428.38 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.25 us    (72.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.517578125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.245822443627034e-17,-6.022721384113528e-17,1.5321728261130653e-17)
    sum a = (-2.6357822174860602e-17,1.124100812432971e-16,4.496403249731884e-18)
    sum e = 2.5920013852543864
    sum de = 3.8624702394796095e-19
Info: CFL hydro = 0.011161993418297893 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011161993418297893 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6252e+04 |  512 |      1 | 3.150e-02 | 0.1% |   2.0% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1275.3238286794517 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.932389449370598, dt = 0.011161993418297893 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.2%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.2%)
   LB compute        : 434.65 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.44 us    (76.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.517578125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1711751240514074e-17,-5.835078514121462e-17,1.490604514819971e-17)
    sum a = (1.207120341184531e-16,2.768098250616191e-17,-5.420273604950232e-17)
    sum e = 2.5920013871834384
    sum de = 4.3029273720518457e-19
Info: CFL hydro = 0.011156817817930464 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011156817817930464 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6103e+04 |  512 |      1 | 3.180e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1263.8202526023006 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.943551442788896, dt = 0.011156817817930464 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.2%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 410.42 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.517578125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4164867075979773e-17,-5.901821999859669e-17,1.3904892862126594e-17)
    sum a = (-1.925608110464605e-16,-8.63215748880819e-17,-3.184952301893418e-18)
    sum e = 2.5920013877027075
    sum de = 2.744386749103933e-19
Info: CFL hydro = 0.011152756005801295 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011152756005801295 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5941e+04 |  512 |      1 | 3.212e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1250.5443781110519 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.954708260606827, dt = 0.011152756005801295 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.1%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 406.55 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.46 us    (72.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.517578125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.042079171373558e-17,-6.04233460141379e-17,1.3981003854635077e-17)
    sum a = (9.089994382205369e-17,5.145103093573411e-17,1.3118607762596658e-16)
    sum e = 2.5920013869559257
    sum de = -4.1843427594362437e-19
Info: CFL hydro = 0.011149887979744047 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011149887979744047 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5896e+04 |  512 |      1 | 3.221e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1246.5428276745918 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.965861016612628, dt = 0.011149887979744047 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.2%)
   patch tree reduce : 1824.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 409.24 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.50 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.517578125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2911963045455526e-17,-5.935779211901915e-17,1.6375572772786563e-17)
    sum a = (-6.978792543854694e-18,-9.005686821272896e-17,-9.936582806568949e-17)
    sum e = 2.592001385069407
    sum de = -3.2356658585114273e-19
Info: CFL hydro = 0.01114785588289458 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01114785588289458 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5499e+04 |  512 |      1 | 3.304e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1215.0541799457792 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.977010904592372, dt = 0.01114785588289458 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.3%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1193.00 ns (0.3%)
   LB compute        : 413.30 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 us    (75.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509765625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2376258752030435e-17,-6.108785352565427e-17,1.4004422621560764e-17)
    sum a = (-5.790290122376084e-17,6.583015382810587e-17,-1.8149544367407343e-18)
    sum e = 2.5920013822336183
    sum de = 4.1001688603028476e-19
Info: CFL hydro = 0.011146008772357923 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011146008772357923 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5790e+04 |  512 |      1 | 3.243e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1237.6554106281474 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.988158760475267, dt = 0.011146008772357923 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.3%)
   patch tree reduce : 1674.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 409.56 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.50 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.147463622539149e-17,-5.903578407379095e-17,1.440254165929744e-17)
    sum a = (1.031947964580393e-16,-1.0389735946580991e-16,1.3646115487597755e-16)
    sum e = 2.5920013787051426
    sum de = 6.2849844686269085e-19
Info: CFL hydro = 0.011145539718255246 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011145539718255246 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5304e+04 |  512 |      1 | 3.346e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1199.3410880582426 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.999304769247624, dt = 0.0006952307523757639 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.4%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 432.89 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.49 us    (74.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.230014775952195e-17,-6.000327188240839e-17,1.535100171978776e-17)
    sum a = (2.231808488017961e-17,6.217682618769871e-18,3.3371742869103825e-19)
    sum e = 2.5920012948752507
    sum de = 9.266540442962046e-19
Info: CFL hydro = 0.011146245670786733 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011146245670786733 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5876e+04 |  512 |      1 | 3.225e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.60971908568358 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1616                                                    [SPH][rank=0]
Info: time since start : 781.882477404 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14989658697546157 max=0.1501255424866011 delta=0.0002289555111395225
Number of particle pairs: 130816
Distance min=0.130187 max=1.976914 mean=0.800884
---------------- t = 14, dt = 0.011146245670786733 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.05 us   (1.4%)
   patch tree reduce : 2.26 us    (0.3%)
   gen split merge   : 762.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.1%)
   LB compute        : 681.05 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.98 us    (74.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.245236974453892e-17,-6.022867751406812e-17,1.538612987017629e-17)
    sum a = (-1.4191772756966257e-17,-1.7915356698150476e-17,1.53779333017523e-16)
    sum e = 2.59200137571832
    sum de = 1.6263032587282567e-19
Info: CFL hydro = 0.011146573451721632 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011146573451721632 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1763e+04 |  512 |      1 | 4.353e-02 | 0.0% |   1.1% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 921.9130172916969 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.011146245670787, dt = 0.011146573451721632 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (1.4%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1233.00 ns (0.3%)
   LB compute        : 436.11 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.73 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.224745553393916e-17,-6.057264065328915e-17,1.7927066081613317e-17)
    sum a = (-2.5292268279741847e-18,2.997602166487923e-17,1.129750589953793e-16)
    sum e = 2.5920013713009884
    sum de = -2.3445871979999033e-18
Info: CFL hydro = 0.01114333772322168 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01114333772322168 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5689e+04 |  512 |      1 | 3.263e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1229.6130870989005 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.022292819122509, dt = 0.01114333772322168 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.2%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 430.06 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.53 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.210694293238504e-17,-5.963149895746312e-17,1.902189343538918e-17)
    sum a = (1.5530155286769265e-16,-1.2660185400026335e-16,6.599115785071996e-17)
    sum e = 2.592001367642227
    sum de = 1.799097979968134e-18
Info: CFL hydro = 0.01113771088698295 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01113771088698295 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5793e+04 |  512 |      1 | 3.242e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1237.390428747411 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.033436156845731, dt = 0.01113771088698295 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1993.00 ns (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 414.32 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.52 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.455420407611932e-17,-6.219439026289297e-17,1.9431721856588702e-17)
    sum a = (-3.256965010189905e-17,2.398081733190338e-17,-1.461770158042719e-17)
    sum e = 2.5920013645976305
    sum de = 1.111307226797642e-18
Info: CFL hydro = 0.011132674453466366 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011132674453466366 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5630e+04 |  512 |      1 | 3.276e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1224.006583627666 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.044573867732714, dt = 0.011132674453466366 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.2%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 406.87 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.324860782001227e-17,-6.129423140918689e-17,1.875257761574378e-17)
    sum a = (1.2458198535292287e-16,-1.2301878266063325e-16,-8.15792745856303e-17)
    sum e = 2.5920013624380807
    sum de = -9.723938234479368e-19
Info: CFL hydro = 0.011128332681734536 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011128332681734536 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5877e+04 |  512 |      1 | 3.225e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1242.8179610624823 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.055706542186181, dt = 0.011128332681734536 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1874.00 ns (0.5%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 391.94 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5684159580283714e-17,-6.32511621204146e-17,1.7634331495042232e-17)
    sum a = (4.760449846819004e-17,3.843605121678362e-18,-3.7812526547387206e-17)
    sum e = 2.5920013613390247
    sum de = 8.639736061993863e-19
Info: CFL hydro = 0.011124774177824485 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011124774177824485 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5700e+04 |  512 |      1 | 3.261e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1228.4322960347329 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.066834874867915, dt = 0.011124774177824485 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.2%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 388.05 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5730997114135084e-17,-6.238027672536561e-17,1.7376725058859676e-17)
    sum a = (5.858204546460576e-17,1.4343994741983223e-19,-6.751337770088961e-17)
    sum e = 2.5920013613907615
    sum de = 7.250602028496811e-19
Info: CFL hydro = 0.011122071503207443 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011122071503207443 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5683e+04 |  512 |      1 | 3.265e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1226.7551459492456 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.07795964904574, dt = 0.011122071503207443 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.0%)
   patch tree reduce : 2.00 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 446.46 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.41 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6468688272294224e-17,-6.218707189822869e-17,1.636386338932372e-17)
    sum a = (-1.9165918851982155e-16,1.254016421953219e-16,-3.3199029463026885e-17)
    sum e = 2.5920013625910903
    sum de = -3.5914196963582334e-19
Info: CFL hydro = 0.011120281642574656 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011120281642574656 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5790e+04 |  512 |      1 | 3.242e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1234.8376797611957 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.089081720548947, dt = 0.011120281642574656 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.4%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 385.25 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3096385834995307e-17,-6.004279105159549e-17,1.627018832162097e-17)
    sum a = (-4.066083407472387e-18,2.3682228053600874e-17,4.5687086926149424e-17)
    sum e = 2.592001364849709
    sum de = 5.759824041329242e-19
Info: CFL hydro = 0.011119445539138654 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011119445539138654 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5959e+04 |  512 |      1 | 3.208e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1247.8148181883591 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.100202002191521, dt = 0.011119445539138654 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.2%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 397.60 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.394531613605146e-17,-6.046432885625785e-17,1.717766553999134e-17)
    sum a = (-1.3289711128447456e-16,-4.928479499510807e-17,-1.0743359327158864e-17)
    sum e = 2.592001367991852
    sum de = 3.4558944247975454e-19
Info: CFL hydro = 0.01111846710132553 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01111846710132553 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5929e+04 |  512 |      1 | 3.214e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1245.3494676714608 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.11132144773066, dt = 0.01111846710132553 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 1062.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 450.97 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.50 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1896174030053854e-17,-6.174504267250635e-17,1.6785401193986084e-17)
    sum a = (-1.5637881614627426e-17,-4.9237957461256697e-17,-1.6551213524729212e-17)
    sum e = 2.592001371765151
    sum de = -8.876905287225068e-19
Info: CFL hydro = 0.011116710790178024 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011116710790178024 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5671e+04 |  512 |      1 | 3.267e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1225.0791417672438 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.122439914831986, dt = 0.011116710790178024 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.31 us   (2.4%)
   patch tree reduce : 3.88 us    (0.9%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 407.47 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.234113060164191e-17,-6.239198610882846e-17,1.654535883299779e-17)
    sum a = (-4.6413068700845714e-17,5.3874873312542705e-17,2.618803611464937e-17)
    sum e = 2.5920013758666323
    sum de = 1.1180834903756764e-18
Info: CFL hydro = 0.011115873059906857 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011115873059906857 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5950e+04 |  512 |      1 | 3.210e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1246.7191617245928 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.133556625622164, dt = 0.011115873059906857 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.3%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 761.00 ns  (0.2%)
   LB compute        : 386.95 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1515619067511443e-17,-6.068680714205188e-17,1.712497331440854e-17)
    sum a = (-6.397275287631232e-17,1.160165713498529e-16,-5.053769902563232e-17)
    sum e = 2.5920013799982558
    sum de = 1.7110065534536867e-18
Info: CFL hydro = 0.011113041456059717 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011113041456059717 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5932e+04 |  512 |      1 | 3.214e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1245.2381260281745 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.144672498682072, dt = 0.011113041456059717 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 394.45 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.084232951839795e-17,-5.944853984085619e-17,1.603014596063268e-17)
    sum a = (-5.67026894188194e-17,-1.7444639482944168e-16,-4.447223839187941e-17)
    sum e = 2.5920013837989155
    sum de = -4.912791094074942e-19
Info: CFL hydro = 0.011106797734119912 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011106797734119912 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6017e+04 |  512 |      1 | 3.197e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1251.5461885264779 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.155785540138131, dt = 0.011106797734119912 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.2%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 383.10 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.99933992173418e-17,-6.273009455631806e-17,1.5713992607135908e-17)
    sum a = (9.163470763434712e-17,-2.85123487320238e-17,-2.5432780881295968e-17)
    sum e = 2.5920013869486604
    sum de = 5.759824041329242e-19
Info: CFL hydro = 0.011101287170897369 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011101287170897369 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5679e+04 |  512 |      1 | 3.265e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1224.4853837458552 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.166892337872252, dt = 0.011101287170897369 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.2%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 406.05 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (73.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1913738105248123e-17,-6.238174039829847e-17,1.5503223704804724e-17)
    sum a = (4.049104801451264e-17,5.586546850122609e-17,2.458970527197124e-18)
    sum e = 2.5920013892602483
    sum de = 1.0232158002831948e-18
Info: CFL hydro = 0.011096598586205222 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011096598586205222 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6124e+04 |  512 |      1 | 3.175e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1258.5977299378353 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.177993625043149, dt = 0.011096598586205222 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.2%)
   LB compute        : 425.32 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.42 us    (73.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2089378857190775e-17,-6.114347309710277e-17,1.573155668233017e-17)
    sum a = (-7.495176354566091e-17,-9.156737867943576e-17,3.429678416266846e-17)
    sum e = 2.592001390558941
    sum de = -5.454892180317694e-19
Info: CFL hydro = 0.01109281517147178 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01109281517147178 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5871e+04 |  512 |      1 | 3.226e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1238.2936287944651 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.189090223629353, dt = 0.01109281517147178 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 398.24 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.084232951839795e-17,-6.277693209016943e-17,1.627018832162097e-17)
    sum a = (-4.847684753617187e-18,-1.5573480005581784e-17,5.035034889022682e-18)
    sum e = 2.592001390753934
    sum de = -7.335305323222241e-19
Info: CFL hydro = 0.01109001224983285 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01109001224983285 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6678e+04 |  512 |      1 | 3.070e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1300.793813061191 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.200183038800825, dt = 0.01109001224983285 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 409.06 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.12345938644032e-17,-6.283840635334936e-17,1.61706585621868e-17)
    sum a = (-1.1168995416033222e-16,3.6427891952905966e-17,1.8535954021681178e-17)
    sum e = 2.5920013898394108
    sum de = -9.944166800765486e-19
Info: CFL hydro = 0.011088256128865692 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011088256128865692 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5247e+04 |  512 |      1 | 3.358e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1188.918015205896 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.211273051050657, dt = 0.011088256128865692 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.4%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 413.28 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.54 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.943134881112531e-17,-6.216804415010158e-17,1.653364944953495e-17)
    sum a = (-1.4478652651805923e-17,-2.0491421059976032e-18,-5.261025989855561e-17)
    sum e = 2.5920013879013153
    sum de = -1.2536087619363645e-18
Info: CFL hydro = 0.011087603180649516 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011087603180649516 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5800e+04 |  512 |      1 | 3.241e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1231.808596135958 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.222361307179524, dt = 0.011087603180649516 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.4%)
   patch tree reduce : 1834.00 ns (0.4%)
   gen split merge   : 991.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 419.23 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.48 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9888014766176204e-17,-6.235832163137278e-17,1.5602753464238894e-17)
    sum a = (-2.000548164626803e-17,2.2962100970636002e-17,-8.356986977431368e-17)
    sum e = 2.5920013851083765
    sum de = -9.785348123155305e-19
Info: CFL hydro = 0.011088098133670362 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011088098133670362 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5064e+04 |  512 |      1 | 3.399e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1174.4017763750414 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.233448910360174, dt = 0.011088098133670362 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1804.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 395.41 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.41 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9525023878828055e-17,-6.197483932296465e-17,1.4379122892371753e-17)
    sum a = (1.0399688922524408e-16,3.780959920152149e-17,-1.0714085868501754e-17)
    sum e = 2.5920013816972465
    sum de = 5.124549330888517e-19
Info: CFL hydro = 0.011089773502469969 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011089773502469969 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6125e+04 |  512 |      1 | 3.175e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1257.1710481838961 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.244537008493845, dt = 0.011089773502469969 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.2%)
   patch tree reduce : 1924.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 398.26 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.119946571401467e-17,-6.156793824763085e-17,1.473918643385419e-17)
    sum a = (3.3119991124652693e-17,-7.70243244185842e-17,-7.650911154621909e-17)
    sum e = 2.592001377959037
    sum de = -8.639736061993863e-20
Info: CFL hydro = 0.011092648616085114 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011092648616085114 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5805e+04 |  512 |      1 | 3.240e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1232.3579089657069 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.255626781996314, dt = 0.011092648616085114 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.5%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 384.24 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.114091879670045e-17,-6.289695327066358e-17,1.351262851612134e-17)
    sum a = (1.274976218351709e-16,2.0491421059976032e-18,-3.250524849285341e-17)
    sum e = 2.5920013742182526
    sum de = 1.9617283058409596e-18
Info: CFL hydro = 0.011096728431383289 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011096728431383289 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6121e+04 |  512 |      1 | 3.176e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1257.3537511198494 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.2667194306124, dt = 0.011096728431383289 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.4%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 383.82 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (63.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.320762497789232e-17,-6.246663342840409e-17,1.337797060629864e-17)
    sum a = (3.216567637243095e-17,2.0362617841884757e-17,1.3559466049972712e-17)
    sum e = 2.592001370808606
    sum de = -2.270048298641525e-19
Info: CFL hydro = 0.01110200309638586 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01110200309638586 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5312e+04 |  512 |      1 | 3.344e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1194.7355591010044 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.277816159043782, dt = 0.01110200309638586 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1984.00 ns (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 394.71 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.29851466920983e-17,-6.17962712251563e-17,1.3682414576332568e-17)
    sum a = (-5.761016663718977e-18,7.268014315386928e-17,8.782037597132586e-19)
    sum e = 2.592001368044055
    sum de = 5.421010862427522e-19
Info: CFL hydro = 0.011103840757211138 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011103840757211138 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6126e+04 |  512 |      1 | 3.175e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1258.8016325622923 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.288918162140169, dt = 0.011103840757211138 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 407.60 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.47 us    (74.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2668993338601526e-17,-6.097661438275725e-17,1.3667777847004015e-17)
    sum a = (9.549002213948832e-17,2.204876906053421e-16,-6.43313527448619e-17)
    sum e = 2.592001366148625
    sum de = 3.1509625637859973e-19
Info: CFL hydro = 0.01110357136188011 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01110357136188011 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6226e+04 |  512 |      1 | 3.156e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1266.7895895633405 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.30002200289738, dt = 0.01110357136188011 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.1%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 403.81 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.408582873760558e-17,-5.717106475733313e-17,1.2622715372945236e-17)
    sum a = (1.6480957223952152e-17,4.4296597639936766e-17,-4.570172365547798e-17)
    sum e = 2.5920013653529246
    sum de = 1.5382118322138094e-18
Info: CFL hydro = 0.01110474584854636 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01110474584854636 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5684e+04 |  512 |      1 | 3.264e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1224.4914765085953 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.311125574259261, dt = 0.01110474584854636 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.2%)
   patch tree reduce : 1964.00 ns (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 401.41 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4243905414353965e-17,-5.747550872736706e-17,1.2180686147222896e-17)
    sum a = (6.866089728024826e-17,-1.4198798387043964e-16,1.0451210209760919e-16)
    sum e = 2.592001365825755
    sum de = -2.273436430430542e-18
Info: CFL hydro = 0.011107357831029025 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011107357831029025 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6351e+04 |  512 |      1 | 3.131e-02 | 0.1% |   4.1% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1276.6524235592342 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.322230320107808, dt = 0.011107357831029025 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1894.00 ns (0.5%)
   gen split merge   : 1392.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 388.68 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5045998181558744e-17,-6.075999078869465e-17,1.4191772756966257e-17)
    sum a = (-1.0815664770041921e-16,-3.6430819298771676e-17,-9.900283717834134e-18)
    sum e = 2.592001367603497
    sum de = -8.131516293641283e-19
Info: CFL hydro = 0.011111381865238346 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011111381865238346 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6073e+04 |  512 |      1 | 3.185e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1255.2956275743666 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.333337677938838, dt = 0.011111381865238346 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 412.25 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (73.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.30934584891296e-17,-6.03443076757637e-17,1.3462863636404254e-17)
    sum a = (7.44233776169001e-17,1.0617483454933297e-17,8.96938773253808e-18)
    sum e = 2.5920013706299168
    sum de = -1.4907779871675686e-19
Info: CFL hydro = 0.011116773307617704 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011116773307617704 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5861e+04 |  512 |      1 | 3.228e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1239.2037304717649 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.344449059804075, dt = 0.011116773307617704 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (0.8%)
   patch tree reduce : 1613.00 ns (0.2%)
   gen split merge   : 801.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.2%)
   LB compute        : 654.89 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (72.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.476204563258479e-17,-5.994033394629561e-17,1.3650213771809749e-17)
    sum a = (3.0590764296678506e-19,1.5529277083009553e-16,9.189816876226109e-17)
    sum e = 2.592001374756805
    sum de = -1.748276003132876e-18
Info: CFL hydro = 0.011123470137633436 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011123470137633436 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3548e+04 |  512 |      1 | 3.779e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1058.9412337024298 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.355565833111694, dt = 0.011123470137633436 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.2%)
   patch tree reduce : 1944.00 ns (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 384.92 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4240978068488256e-17,-5.786777307337232e-17,1.5160724238516554e-17)
    sum a = (1.44991440728659e-17,-6.292769040225354e-17,4.2715830872452896e-17)
    sum e = 2.5920013797507186
    sum de = -7.928228386300251e-19
Info: CFL hydro = 0.011131389479442382 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011131389479442382 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6032e+04 |  512 |      1 | 3.194e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1253.9177400587084 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.366689303249327, dt = 0.011131389479442382 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (1.1%)
   patch tree reduce : 1694.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 383.19 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.439027270763951e-17,-5.933144600622775e-17,1.5397839253639135e-17)
    sum a = (1.0444330946976498e-16,-5.94251210739305e-19,-1.1466121021402874e-16)
    sum e = 2.592001385311577
    sum de = -2.270048298641525e-19
Info: CFL hydro = 0.011140431379584615 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011140431379584615 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5828e+04 |  512 |      1 | 3.235e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1238.8153165207302 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.37782069272877, dt = 0.011140431379584615 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.5%)
   patch tree reduce : 1834.00 ns (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 383.33 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6205227144380246e-17,-5.909140364523946e-17,1.3079381327996131e-17)
    sum a = (7.342368900375983e-17,-1.225679713973138e-16,-4.496403249731884e-18)
    sum e = 2.5920013910888082
    sum de = -1.0977546996415732e-18
Info: CFL hydro = 0.011150479300484899 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011150479300484899 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5480e+04 |  512 |      1 | 3.308e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1212.5472058180364 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.388961124108354, dt = 0.011150479300484899 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.2%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 398.14 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (73.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6773132242328153e-17,-6.12049473602827e-17,1.3735106801915364e-17)
    sum a = (-6.217682618769871e-17,5.2212140860818934e-17,-4.1571238638959953e-17)
    sum e = 2.592001396707126
    sum de = -6.098637220230962e-20
Info: CFL hydro = 0.011161401627262363 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011161401627262363 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6377e+04 |  512 |      1 | 3.126e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1283.9739236471898 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.400111603408838, dt = 0.011161401627262363 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1804.00 ns (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 396.01 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5344587459861254e-17,-5.943683045739334e-17,1.3137928245310349e-17)
    sum a = (1.604302628244181e-16,-9.991616908844314e-17,-3.471832196733082e-18)
    sum e = 2.592001401794334
    sum de = -9.351243737687476e-19
Info: CFL hydro = 0.011161608218463723 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011161608218463723 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6121e+04 |  512 |      1 | 3.176e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1265.1341307378661 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.4112730050361, dt = 0.011161608218463723 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.1%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 404.97 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8459283460977606e-17,-6.150646398445092e-17,1.3298932267924446e-17)
    sum a = (-5.3500173041731713e-17,-1.093656415429578e-17,5.181987651481368e-17)
    sum e = 2.592001405819837
    sum de = -1.2197274440461925e-18
Info: CFL hydro = 0.011161052325261125 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011161052325261125 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5898e+04 |  512 |      1 | 3.221e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1247.6605337827052 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.422434613254564, dt = 0.011161052325261125 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (1.1%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 394.00 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.642185073844285e-17,-6.136302403703109e-17,1.423275559908621e-17)
    sum a = (-1.4980985202361907e-16,1.1409623246194657e-16,-1.2262066362289657e-16)
    sum e = 2.5920014086421883
    sum de = -1.0486267887008238e-18
Info: CFL hydro = 0.011161197627119928 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011161197627119928 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6054e+04 |  512 |      1 | 3.189e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1259.8604943589448 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.433595665579826, dt = 0.011161197627119928 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.1%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 426.43 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4197067880502596e-17,-5.91821513670765e-17,1.185575075612899e-17)
    sum a = (1.3773162298169605e-16,1.141079418454094e-16,8.606396845189934e-19)
    sum e = 2.592001410085554
    sum de = -5.04831636563563e-19
Info: CFL hydro = 0.011161995075216275 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011161995075216275 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5970e+04 |  512 |      1 | 3.206e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1253.2678192804226 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.444756863206946, dt = 0.011161995075216275 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.2%)
   patch tree reduce : 1614.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 398.89 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (73.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7674754768967096e-17,-5.793802937414938e-17,1.2637352102273791e-17)
    sum a = (-1.1374495095806126e-16,-4.53036046177413e-17,-9.238118083010339e-17)
    sum e = 2.592001410046501
    sum de = 3.993760346304026e-19
Info: CFL hydro = 0.011163390645243113 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011163390645243113 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6275e+04 |  512 |      1 | 3.146e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1277.3092154019528 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.455918858282162, dt = 0.011163390645243113 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.1%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 401.67 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4601041609970695e-17,-5.917044198361365e-17,1.0957055575355756e-17)
    sum a = (2.2617845096828406e-16,6.574818814386596e-17,-7.667304291469889e-17)
    sum e = 2.5920014085221412
    sum de = 1.1943164556285635e-19
Info: CFL hydro = 0.01116532620576753 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01116532620576753 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6015e+04 |  512 |      1 | 3.197e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1257.0506225172871 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.467082248927406, dt = 0.01116532620576753 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.2%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 406.13 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9138427701822527e-17,-5.804634117118069e-17,1.0207655033733776e-17)
    sum a = (1.3512628516121338e-16,-8.154414643524177e-17,3.1831958943739915e-17)
    sum e = 2.5920014056142198
    sum de = -1.1519648082658485e-19
Info: CFL hydro = 0.011161294089011693 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011161294089011693 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5993e+04 |  512 |      1 | 3.201e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1255.5413454348034 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.478247575133175, dt = 0.011161294089011693 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.2%)
   patch tree reduce : 1332.00 ns (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.2%)
   LB compute        : 376.06 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (72.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.009859714577569e-17,-5.931388193103348e-17,1.1249790161926842e-17)
    sum a = (4.264557457167584e-17,3.2353026507836446e-17,6.205973235307028e-19)
    sum e = 2.592001401425813
    sum de = 9.9272261418204e-19
Info: CFL hydro = 0.011157118010358288 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011157118010358288 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5706e+04 |  512 |      1 | 3.260e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1232.6025048919712 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.489408869222187, dt = 0.010591130777813262 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.2%)
   patch tree reduce : 1873.00 ns (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 384.33 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (72.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0004922078072944e-17,-5.863473769018856e-17,1.1000965763341419e-17)
    sum a = (3.634592626866606e-17,1.8217458791491835e-16,-3.376400721510908e-17)
    sum e = 2.5920013884377706
    sum de = -4.641740550953566e-19
Info: CFL hydro = 0.011154515616993349 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011154515616993349 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5815e+04 |  512 |      1 | 3.237e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1177.716234301581 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1661                                                    [SPH][rank=0]
Info: time since start : 784.155236187 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14989462555835112 max=0.15009051353045327 delta=0.00019588797210215447
Number of particle pairs: 130816
Distance min=0.129144 max=1.975205 mean=0.800599
---------------- t = 14.5, dt = 0.011154515616993349 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.52 us   (1.7%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 607.07 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.48 us    (11.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0625519401603646e-17,-5.582448565910614e-17,1.045940677818491e-17)
    sum a = (8.767986336977173e-17,-6.504562513609535e-17,2.030758373960939e-16)
    sum e = 2.5920013911721
    sum de = -1.7957098481791167e-19
Info: CFL hydro = 0.011153042826621468 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011153042826621468 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2547e+04 |  512 |      1 | 4.081e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 984.0705447621577 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.511154515616994, dt = 0.011153042826621468 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.16 us    (0.6%)
   patch tree reduce : 802.00 ns  (0.1%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.1%)
   LB compute        : 652.67 us  (97.9%)
   LB move op cnt    : 0
   LB apply          : 2.90 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.200137195848775e-17,-5.785899103577518e-17,1.408638830580067e-17)
    sum a = (8.876883603181618e-17,1.8266638202035778e-17,-2.9665723003113875e-17)
    sum e = 2.592001385390076
    sum de = -1.5382118322138094e-18
Info: CFL hydro = 0.011151573984752661 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011151573984752661 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3019e+04 |  512 |      1 | 3.933e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1020.9836829791896 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.522307558443615, dt = 0.011151573984752661 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.30 us    (0.5%)
   patch tree reduce : 552.00 ns  (0.1%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 761.00 ns  (0.1%)
   LB compute        : 626.92 us  (98.2%)
   LB move op cnt    : 0
   LB apply          : 2.44 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (72.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.272149904145262e-17,-5.721204759945309e-17,1.2555386418033887e-17)
    sum a = (2.6006540670975297e-17,1.3465790982269965e-19,-9.067746553625966e-17)
    sum e = 2.592001379924355
    sum de = -1.362028979184915e-18
Info: CFL hydro = 0.01115146480813166 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01115146480813166 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4296e+04 |  512 |      1 | 3.581e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1120.9799864934437 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.533459132428368, dt = 0.01115146480813166 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.86 us    (0.6%)
   patch tree reduce : 601.00 ns  (0.1%)
   gen split merge   : 721.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 601.00 ns  (0.1%)
   LB compute        : 633.21 us  (98.0%)
   LB move op cnt    : 0
   LB apply          : 2.48 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.276248188357257e-17,-5.740232508072429e-17,1.120880731980689e-17)
    sum a = (6.930784071657036e-17,2.2581546008093588e-17,-8.557217434645992e-17)
    sum e = 2.5920013751135116
    sum de = -1.1587410718438829e-18
Info: CFL hydro = 0.011147312554836232 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011147312554836232 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5364e+04 |  512 |      1 | 3.332e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1204.6877777604589 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.544610597236499, dt = 0.011147312554836232 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.55 us    (0.5%)
   patch tree reduce : 902.00 ns  (0.1%)
   gen split merge   : 681.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 492.00 ns  (0.1%)
   LB compute        : 640.54 us  (98.0%)
   LB move op cnt    : 0
   LB apply          : 2.51 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.35235918086574e-17,-5.685491140383636e-17,1.0348167635287896e-17)
    sum a = (1.1773785071889087e-16,-1.4007349967426475e-16,1.283699709031527e-16)
    sum e = 2.5920013712447982
    sum de = -1.2197274440461925e-18
Info: CFL hydro = 0.011143669910557194 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011143669910557194 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6084e+04 |  512 |      1 | 3.183e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1260.6786975868495 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.555757909791335, dt = 0.011143669910557194 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 us    (1.1%)
   patch tree reduce : 741.00 ns  (0.2%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 561.00 ns  (0.2%)
   LB compute        : 346.95 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.62 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.529170871154676e-17,-5.920264278813647e-17,1.2976924222696251e-17)
    sum a = (1.9679375316827842e-16,-1.0535517770693392e-16,-3.610002921594635e-17)
    sum e = 2.592001368652536
    sum de = -1.0842021724855044e-18
Info: CFL hydro = 0.011141442554758114 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011141442554758114 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7104e+04 |  512 |      1 | 2.993e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1340.1911775285062 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.566901579701893, dt = 0.011141442554758114 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 384.06 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.80785419757035e-17,-6.040870928480935e-17,1.1636199816200677e-17)
    sum a = (-6.077170017215749e-17,-3.704848927643667e-17,7.514496837279783e-17)
    sum e = 2.5920013675371383
    sum de = -8.199278929421627e-19
Info: CFL hydro = 0.011140660351528532 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011140660351528532 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7166e+04 |  512 |      1 | 2.983e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1344.7403717830716 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.57804302225665, dt = 0.011140660351528532 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.80 us    (1.0%)
   patch tree reduce : 922.00 ns  (0.2%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 380.43 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.604696394490016e-17,-6.013646611929823e-17,1.3146710282907482e-17)
    sum a = (5.222385024428178e-18,-3.7453926678837625e-17,2.6141198580798e-18)
    sum e = 2.5920013679907936
    sum de = 3.3881317890172014e-19
Info: CFL hydro = 0.0111413315703815 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.0111413315703815 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6258e+04 |  512 |      1 | 3.149e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1273.5359012700696 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.58918368260818, dt = 0.0111413315703815 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.03 us    (1.0%)
   patch tree reduce : 1423.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 385.86 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.62987156893513e-17,-6.072193529244041e-17,1.2608078643616683e-17)
    sum a = (-1.1183632145361777e-16,5.724424840397591e-17,-1.7212793690379868e-18)
    sum e = 2.5920013700022655
    sum de = -3.5236570605778894e-19
Info: CFL hydro = 0.011143442780880879 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011143442780880879 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5964e+04 |  512 |      1 | 3.207e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1250.5411817646404 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.600325014178562, dt = 0.011143442780880879 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.33 us    (1.1%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 378.84 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.443106902702777e-17,-5.938706557767626e-17,1.2654916177468057e-17)
    sum a = (-1.0415496590199247e-17,-7.793765632868598e-17,8.301367405982862e-17)
    sum e = 2.5920013734575273
    sum de = -3.1170812458958252e-19
Info: CFL hydro = 0.011146958996060557 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011146958996060557 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5035e+04 |  512 |      1 | 3.405e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1178.035209832485 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.611468456959443, dt = 0.011146958996060557 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.1%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 396.29 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (72.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.50341022753642e-17,-6.156208355589942e-17,1.4118589110323488e-17)
    sum a = (1.0482093708644169e-16,-6.422011360196489e-17,-2.685400729909859e-17)
    sum e = 2.5920013781476094
    sum de = 5.963111948670274e-19
Info: CFL hydro = 0.011151701929957066 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011151701929957066 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6042e+04 |  512 |      1 | 3.192e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1257.3090809034682 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.622615415955504, dt = 0.011151701929957066 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.2%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 390.53 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.47 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.701884277231616e-17,-6.19602025936361e-17,1.3196475162624565e-17)
    sum a = (-2.387543288073779e-17,6.388054148154243e-17,1.4894335764736866e-17)
    sum e = 2.592001383781274
    sum de = 4.743384504624082e-20
Info: CFL hydro = 0.011151080121141615 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011151080121141615 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6195e+04 |  512 |      1 | 3.161e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1269.847333741667 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.633767117885462, dt = 0.011151080121141615 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.2%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 373.93 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.574837466659765e-17,-6.076877282629178e-17,1.3579957471032689e-17)
    sum a = (-4.1217029789208933e-17,-2.4039364249217597e-17,-5.1629599033542474e-17)
    sum e = 2.5920013899244507
    sum de = -8.131516293641283e-20
Info: CFL hydro = 0.011150861883368739 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011150861883368739 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5766e+04 |  512 |      1 | 3.248e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1236.140255753702 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.644918198006604, dt = 0.011150861883368739 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.2%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 381.69 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.525072586942681e-17,-6.0827319743606e-17,1.2660770869199479e-17)
    sum a = (-1.667416205108907e-17,7.06661291982602e-18,-3.0207281988270385e-17)
    sum e = 2.59200139623945
    sum de = -1.0842021724855044e-18
Info: CFL hydro = 0.011151044769008656 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011151044769008656 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5937e+04 |  512 |      1 | 3.213e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1249.527347877056 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.656069059889973, dt = 0.011151044769008656 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 378.64 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.543222131310088e-17,-6.101466987901149e-17,1.249391215485396e-17)
    sum a = (-1.0876260829462137e-16,-3.09127723419067e-17,6.933711417522748e-17)
    sum e = 2.592001402325035
    sum de = -1.917682592583736e-18
Info: CFL hydro = 0.011151619852638397 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011151619852638397 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5952e+04 |  512 |      1 | 3.210e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1250.7137004914546 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.66722010465898, dt = 0.011151619852638397 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.3%)
   patch tree reduce : 1883.00 ns (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 389.13 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.37929076283028e-17,-6.089464869851735e-17,1.3755598222975341e-17)
    sum a = (-1.3581713878552115e-16,7.659107723045899e-17,-9.580032080125367e-17)
    sum e = 2.5920014078004043
    sum de = -1.2807138162485021e-18
Info: CFL hydro = 0.01115257173395892 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01115257173395892 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6121e+04 |  512 |      1 | 3.176e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1264.0628278796207 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.678371724511619, dt = 0.01115257173395892 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (1.1%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 407.15 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1773038980962304e-17,-6.012768408170111e-17,1.171523815457487e-17)
    sum a = (2.8032264010047217e-17,-9.995715193056309e-17,-7.225275065747549e-17)
    sum e = 2.5920014123266544
    sum de = -1.0164395367051604e-19
Info: CFL hydro = 0.011153879165681715 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011153879165681715 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5830e+04 |  512 |      1 | 3.234e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1241.3607346620513 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.689524296245578, dt = 0.011153879165681715 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.4%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 409.09 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.82 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.312547277092072e-17,-6.184310875900767e-17,1.1147333056626963e-17)
    sum a = (2.5151755678187727e-17,6.098246907448867e-17,-1.4250319674280477e-17)
    sum e = 2.592001415632674
    sum de = -5.929230630780102e-20
Info: CFL hydro = 0.011155515215482166 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011155515215482166 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5792e+04 |  512 |      1 | 3.242e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1238.51911294929 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 14.700678175411259, dt = 0.011155515215482166 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 392.45 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.366410441021152e-17,-6.041163663067505e-17,1.1246862816061131e-17)
    sum a = (-2.0386036608810442e-17,6.02330685328667e-17,-1.6510230682609261e-18)
    sum e = 2.592001417538137
    sum de = -2.0739601713521544e-18
Info: CFL hydro = 0.01115744843285333 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01115744843285333 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5774e+04 |  512 |      1 | 3.246e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1237.2433777659905 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.71183369062674, dt = 0.01115744843285333 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 379.36 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (60.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2996669552829444e-17,-5.993447925456419e-17,1.1346392575495301e-17)
    sum a = (9.900283717834135e-17,6.804322730258327e-17,8.231696574378943e-18)
    sum e = 2.5920014179576203
    sum de = 6.784733907506946e-19
Info: CFL hydro = 0.011155584337828633 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011155584337828633 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5705e+04 |  512 |      1 | 3.260e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1232.0854345022872 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.722991139059593, dt = 0.011155584337828633 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.2%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 402.57 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.85 us    (74.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.472965830533027e-17,-5.84825157051716e-17,1.1431285605600916e-17)
    sum a = (5.812537950955487e-17,1.3621525782325783e-16,7.359347506397107e-18)
    sum e = 2.592001416843976
    sum de = -1.5687050183149642e-18
Info: CFL hydro = 0.011141673288865261 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011141673288865261 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5781e+04 |  512 |      1 | 3.244e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1237.8233332358245 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.734146723397421, dt = 0.011141673288865261 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.5%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1433.00 ns (0.4%)
   LB compute        : 387.55 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.40 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.529756340327818e-17,-5.707738968963039e-17,1.1457631718392313e-17)
    sum a = (4.662676494904261e-17,5.670854411055082e-17,-8.025025956259757e-17)
    sum e = 2.5920014141968495
    sum de = -8.046812998915853e-19
Info: CFL hydro = 0.011127682720333966 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011127682720333966 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5714e+04 |  512 |      1 | 3.258e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1230.9952398757437 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.745288396686286, dt = 0.011127682720333966 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 384.04 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.5572733914655e-17,-5.669683472708798e-17,1.0075924469776787e-17)
    sum a = (-7.390962841746785e-17,-3.287409407193298e-17,-1.3805948571865567e-16)
    sum e = 2.5920014104385474
    sum de = -3.4897757426877174e-19
Info: CFL hydro = 0.011114501257753056 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011114501257753056 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5792e+04 |  512 |      1 | 3.242e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1235.6118401496426 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.75641607940662, dt = 0.011114501257753056 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1944.00 ns (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 380.77 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.416760789911379e-17,-5.788826449443229e-17,8.293170837558872e-18)
    sum a = (2.75170511376821e-17,-1.1523497000370808e-16,-1.0341142005210191e-16)
    sum e = 2.5920014058792225
    sum de = -9.656175598699024e-19
Info: CFL hydro = 0.011102279147535216 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011102279147535216 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5955e+04 |  512 |      1 | 3.209e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1246.9002019957718 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.767530580664372, dt = 0.011102279147535216 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.26 us    (1.0%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.2%)
   LB compute        : 394.56 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.469453015494175e-17,-5.95334328709618e-17,7.327146701874288e-18)
    sum a = (-2.4613124038896926e-17,-3.278334635009594e-17,6.458895918104445e-17)
    sum e = 2.5920014008640404
    sum de = -1.7381116077658243e-18
Info: CFL hydro = 0.011091152982965818 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011091152982965818 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6023e+04 |  512 |      1 | 3.195e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1250.796724171375 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.778632859811907, dt = 0.011091152982965818 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 407.16 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (73.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.413247974872526e-17,-5.908847629937375e-17,8.989879153598057e-18)
    sum a = (-1.1358101958958145e-17,2.2499580323853684e-17,1.8243219435110093e-17)
    sum e = 2.5920013957616854
    sum de = 7.453889935837843e-19
Info: CFL hydro = 0.011081239711272731 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011081239711272731 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4539e+04 |  512 |      1 | 3.521e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1133.8450252191235 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.789724012794872, dt = 0.011081239711272731 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (1.0%)
   patch tree reduce : 1913.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 420.77 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.424371889162227e-17,-5.878695967520552e-17,8.910840815223864e-18)
    sum a = (-3.82428463896467e-17,-1.1253010242379124e-16,-5.973541973569585e-17)
    sum e = 2.59200139093508
    sum de = 6.776263578034403e-21
Info: CFL hydro = 0.011072638605609903 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011072638605609903 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5628e+04 |  512 |      1 | 3.276e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1217.6523031508152 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.800805252506144, dt = 0.011072638605609903 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 402.93 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.3860236583214146e-17,-6.049945700664639e-17,7.94481667953928e-18)
    sum a = (-1.683340966618374e-16,1.1928934402771763e-17,4.304369360941251e-17)
    sum e = 2.5920013867253267
    sum de = 1.1384122811097797e-18
Info: CFL hydro = 0.01106543014742093 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01106543014742093 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5824e+04 |  512 |      1 | 3.236e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1231.9953472813795 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.811877891111754, dt = 0.01106543014742093 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 21.65 us   (5.1%)
   patch tree reduce : 1062.00 ns (0.2%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 751.00 ns  (0.2%)
   LB compute        : 394.03 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 2.67 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.105876658972885e-17,-5.998717148014698e-17,8.840584514446802e-18)
    sum a = (-9.643848219997863e-17,9.632724305708162e-17,9.234605267971485e-17)
    sum e = 2.5920013834209894
    sum de = -3.1035287187397564e-18
Info: CFL hydro = 0.011059676142240588 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011059676142240588 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6240e+04 |  512 |      1 | 3.153e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1263.5483772251466 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.822943321259174, dt = 0.011059676142240588 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.43 us    (0.8%)
   patch tree reduce : 521.00 ns  (0.1%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 391.00 ns  (0.1%)
   LB compute        : 391.71 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.60 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.063137409333507e-17,-5.849715243450015e-17,1.0204727687868065e-17)
    sum a = (2.9765252762548045e-17,4.48176652040333e-17,-3.7030925201242405e-17)
    sum e = 2.592001381245309
    sum de = -1.0232158002831948e-18
Info: CFL hydro = 0.01105541931075017 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01105541931075017 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5740e+04 |  512 |      1 | 3.253e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1223.9653165261925 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.834002997401415, dt = 0.01105541931075017 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.42 us    (0.5%)
   patch tree reduce : 832.00 ns  (0.1%)
   gen split merge   : 631.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 702.00 ns  (0.1%)
   LB compute        : 656.71 us  (98.0%)
   LB move op cnt    : 0
   LB apply          : 2.69 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.176425694336517e-17,-5.822198192312334e-17,9.095263604763648e-18)
    sum a = (-4.9038897942388357e-17,-2.513419160299346e-17,-2.201364091014568e-18)
    sum e = 2.592001380340427
    sum de = 1.043544591017298e-18
Info: CFL hydro = 0.011052682769249608 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011052682769249608 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5632e+04 |  512 |      1 | 3.275e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1215.1030474641163 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.845058416712165, dt = 0.011052682769249608 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.88 us    (1.0%)
   patch tree reduce : 1132.00 ns (0.3%)
   gen split merge   : 652.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 367.96 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.067528428132073e-17,-5.883672455492261e-17,9.265049664974878e-18)
    sum a = (-1.4917754531662553e-16,5.8863070667714e-17,9.569493635008808e-17)
    sum e = 2.592001380762408
    sum de = 5.488773498207866e-19
Info: CFL hydro = 0.011051469909732142 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011051469909732142 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6386e+04 |  512 |      1 | 3.125e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1273.4077647785566 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.856111099481415, dt = 0.011051469909732142 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.15 us    (1.1%)
   patch tree reduce : 1614.00 ns (0.4%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 591.00 ns  (0.2%)
   LB compute        : 368.30 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 2.81 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.819289498719792e-17,-5.78092261560581e-17,1.0825325011398768e-17)
    sum a = (1.1068880187425911e-16,-9.421369934203838e-17,2.847136588990384e-17)
    sum e = 2.5920013824795323
    sum de = -4.0657581468206416e-19
Info: CFL hydro = 0.011051765287504322 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011051765287504322 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6259e+04 |  512 |      1 | 3.149e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1263.4177546487608 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.867162569391148, dt = 0.011051765287504322 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.1%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 418.70 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1161223695028737e-17,-5.950123206643898e-17,1.0705303830904623e-17)
    sum a = (8.888592986644461e-17,-1.4681810454886256e-16,-2.7341410385739452e-17)
    sum e = 2.5920013853740014
    sum de = -1.81603863891322e-18
Info: CFL hydro = 0.011053534626894606 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011053534626894606 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6252e+04 |  512 |      1 | 3.150e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1262.9223340173298 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.878214334678653, dt = 0.011053534626894606 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (1.1%)
   patch tree reduce : 1132.00 ns (0.3%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 395.77 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.199844461262204e-17,-6.173186961611065e-17,1.0125689349493872e-17)
    sum a = (-2.1346206052763605e-16,-1.1931861748637473e-17,-2.9080253829971705e-17)
    sum e = 2.5920013892520073
    sum de = -1.009663273127126e-18
Info: CFL hydro = 0.011056724630458606 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011056724630458606 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6312e+04 |  512 |      1 | 3.139e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1267.7905738346192 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.889267869305547, dt = 0.011056724630458606 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.15 us    (1.0%)
   patch tree reduce : 1222.00 ns (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.2%)
   LB compute        : 398.99 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7876741633701145e-17,-6.079219159321746e-17,9.800753958399966e-18)
    sum a = (9.599352562839059e-17,-1.5142574694149146e-16,4.732347326508179e-17)
    sum e = 2.5920013938585416
    sum de = 2.710505431213761e-19
Info: CFL hydro = 0.011061265380021102 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011061265380021102 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3916e+04 |  512 |      1 | 3.679e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1081.8799691302966 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.900324593936006, dt = 0.011061265380021102 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.1%)
   patch tree reduce : 2.03 us    (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.2%)
   LB compute        : 436.16 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0726512833970673e-17,-6.352633263179142e-17,1.0860453161787298e-17)
    sum a = (-1.4507926110463033e-17,7.201270829648721e-17,6.144059870247242e-17)
    sum e = 2.592001398893335
    sum de = -4.2012834183813297e-19
Info: CFL hydro = 0.01106707032740602 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01106707032740602 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6074e+04 |  512 |      1 | 3.185e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1250.115579706831 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.911385859316027, dt = 0.01106707032740602 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.3%)
   patch tree reduce : 1012.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 376.41 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0000531059274377e-17,-6.133082323250827e-17,1.158350759061788e-17)
    sum a = (-1.9615559176955343e-16,-7.551381395187739e-17,-7.151945051811492e-17)
    sum e = 2.5920014040334634
    sum de = -8.809142651444724e-20
Info: CFL hydro = 0.011074037324882505 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011074037324882505 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6265e+04 |  512 |      1 | 3.148e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1265.69812455609 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 14.922452929643434, dt = 0.011074037324882505 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.2%)
   patch tree reduce : 1914.00 ns (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 403.90 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 us    (72.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.676288653179816e-17,-6.270960313525809e-17,1.0099343236702474e-17)
    sum a = (5.491700844073577e-17,5.636897199012836e-17,-4.0561304315289706e-17)
    sum e = 2.5920014089526875
    sum de = -1.328147661294743e-18
Info: CFL hydro = 0.011082050261769803 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011082050261769803 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6337e+04 |  512 |      1 | 3.134e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1272.0809345325845 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.933526966968316, dt = 0.011082050261769803 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.77 us    (0.9%)
   patch tree reduce : 1122.00 ns (0.3%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 398.13 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.864370625051739e-17,-6.190751036805331e-17,9.797826612534255e-18)
    sum a = (8.758618830206899e-17,3.168559165045437e-17,6.352047794006e-17)
    sum e = 2.5920014133439473
    sum de = -5.793705359219414e-19
Info: CFL hydro = 0.01109097993309873 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01109097993309873 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5807e+04 |  512 |      1 | 3.239e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1231.7053503161417 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.944609017230086, dt = 0.01109097993309873 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.14 us    (1.0%)
   patch tree reduce : 1172.00 ns (0.3%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 394.07 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.985416376598883e-17,-6.158842966869082e-17,1.1050730643058504e-17)
    sum a = (-1.3548927604856152e-16,-1.1045461420500225e-16,2.1810190372478777e-17)
    sum e = 2.5920014169420207
    sum de = -1.0164395367051604e-19
Info: CFL hydro = 0.011100686237797272 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011100686237797272 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5827e+04 |  512 |      1 | 3.235e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1234.2814588581662 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.955699997163185, dt = 0.011100686237797272 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.2%)
   patch tree reduce : 1542.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 391.71 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.702195664091358e-17,-6.328629027080312e-17,1.1088786139312745e-17)
    sum a = (3.4185545019771444e-17,-3.247012034246488e-17,-7.044511458539904e-17)
    sum e = 2.592001419538322
    sum de = -5.675120746603812e-19
Info: CFL hydro = 0.01111101975958846 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01111101975958846 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5910e+04 |  512 |      1 | 3.218e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1241.814481342539 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.966800683400983, dt = 0.01111101975958846 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.12 us    (1.0%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1123.00 ns (0.3%)
   LB compute        : 377.60 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.835243533687916e-17,-6.362000769949416e-17,9.832954762922785e-18)
    sum a = (1.6283068643430098e-16,7.01509163258951e-17,6.259982766529392e-17)
    sum e = 2.5920014209948508
    sum de = -3.066259269060567e-19
Info: CFL hydro = 0.011121824033165379 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011121824033165379 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3722e+04 |  512 |      1 | 3.731e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1072.0077875176921 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.977911703160572, dt = 0.011121824033165379 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.43 us    (1.0%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 409.69 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.075578629262778e-17,-6.234368490204423e-17,1.1363956650689565e-17)
    sum a = (1.791360029063105e-16,4.686095261829948e-17,-1.0293426267599103e-16)
    sum e = 2.5920014212539977
    sum de = -2.388632911257127e-19
Info: CFL hydro = 0.011132937753600433 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011132937753600433 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5713e+04 |  512 |      1 | 3.258e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1228.7979200590876 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.989033527193737, dt = 0.010966472806263283 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (1.1%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 401.46 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.289274877459671e-17,-6.177577980409631e-17,9.20357540179495e-18)
    sum a = (8.036149870549458e-17,-2.400423609882907e-17,-4.683753385137379e-20)
    sum e = 2.5920014179042563
    sum de = 1.4625612021121597e-18
Info: CFL hydro = 0.011144029636915223 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011144029636915223 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5996e+04 |  512 |      1 | 3.201e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1233.4214927415649 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 1706                                                    [SPH][rank=0]
Info: time since start : 786.657506353 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14989032783970893 max=0.1501082738712085 delta=0.00021794603149957736
Number of particle pairs: 130816
Distance min=0.126971 max=1.974167 mean=0.800401
---------------- t = 15, dt = 0.011144029636915223 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.07 us   (1.7%)
   patch tree reduce : 1673.00 ns (0.3%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.1%)
   LB compute        : 584.75 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.18 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.3342096364983324e-17,-6.235685795843992e-17,9.841736800519918e-18)
    sum a = (1.1661374990645789e-16,7.732876838861813e-17,3.5268662990084464e-17)
    sum e = 2.5920014183992657
    sum de = -1.3374650237145402e-18
Info: CFL hydro = 0.01115526933161823 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01115526933161823 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5904e+04 |  512 |      1 | 3.219e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1246.2065837287632 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.011144029636915, dt = 0.01115526933161823 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.56 us    (0.8%)
   patch tree reduce : 932.00 ns  (0.2%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 591.00 ns  (0.1%)
   LB compute        : 413.06 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4823333373033024e-17,-6.093709521357015e-17,1.049160758270773e-17)
    sum a = (1.0187163612673799e-17,1.202553681634022e-17,1.827483477045977e-16)
    sum e = 2.592001415552999
    sum de = -1.7787691892340307e-19
Info: CFL hydro = 0.01115452261944506 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01115452261944506 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6461e+04 |  512 |      1 | 3.110e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1291.134079285435 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.022299298968534, dt = 0.01115452261944506 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.99 us    (1.0%)
   patch tree reduce : 822.00 ns  (0.2%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 681.00 ns  (0.2%)
   LB compute        : 371.61 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4177853609643776e-17,-6.109809923618425e-17,1.3375043260432928e-17)
    sum a = (-1.063212018426185e-17,-1.12866747198348e-16,2.3752484354377934e-17)
    sum e = 2.592001411907495
    sum de = 1.6618786425129373e-18
Info: CFL hydro = 0.0111539525336223 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.0111539525336223 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5212e+04 |  512 |      1 | 3.366e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1193.044282976445 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.03345382158798, dt = 0.0111539525336223 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 393.14 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4015385914096826e-17,-6.347803142500718e-17,1.2772010012096491e-17)
    sum a = (-7.334757801125135e-17,-3.8834170254520297e-17,3.0927409071235256e-17)
    sum e = 2.59200140793385
    sum de = -1.0842021724855044e-19
Info: CFL hydro = 0.011154477048764813 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011154477048764813 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5628e+04 |  512 |      1 | 3.276e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1225.6262014348015 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.044607774121602, dt = 0.011154477048764813 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 2.14 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 409.50 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.47 us    (75.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.283859287608106e-17,-6.335654657158018e-17,1.3114509478384661e-17)
    sum a = (4.180249896235111e-17,8.089427565305395e-17,5.273613577078118e-18)
    sum e = 2.5920014039503076
    sum de = -6.301925127571995e-19
Info: CFL hydro = 0.011156104966813305 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011156104966813305 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5518e+04 |  512 |      1 | 3.299e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1217.09929724976 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 15.055762251170366, dt = 0.011156104966813305 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.2%)
   patch tree reduce : 1894.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 661.00 ns  (0.2%)
   LB compute        : 414.01 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 5.50 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.34 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.406515079381391e-17,-6.093416786770445e-17,1.2997415643756227e-17)
    sum a = (-8.643866872271033e-17,-1.0191847366058937e-16,8.547557193289146e-17)
    sum e = 2.592001400260239
    sum de = 1.0842021724855044e-18
Info: CFL hydro = 0.011158831094112236 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011158831094112236 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5121e+04 |  512 |      1 | 3.386e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1186.1427277194873 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.06691835613718, dt = 0.011158831094112236 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 435.59 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.34 us    (42.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.229996123679026e-17,-6.389956922966955e-17,1.4370340854774622e-17)
    sum a = (7.536159196686043e-17,3.372887906472055e-17,4.064619734539532e-18)
    sum e = 2.592001397143519
    sum de = -2.049819732355407e-18
Info: CFL hydro = 0.011162636610110846 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011162636610110846 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5893e+04 |  512 |      1 | 3.222e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1246.9862564716243 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.078077187231292, dt = 0.011162636610110846 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.3%)
   patch tree reduce : 2.16 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 377.44 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (73.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.380754435763135e-17,-6.246663342840409e-17,1.385512798240951e-17)
    sum a = (-1.9390739014468748e-17,-6.790271470102916e-17,-1.690732514929294e-16)
    sum e = 2.592001394837665
    sum de = 1.7957098481791167e-19
Info: CFL hydro = 0.01116748961704995 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01116748961704995 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5895e+04 |  512 |      1 | 3.221e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1247.5251758550953 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.089239823841403, dt = 0.01116748961704995 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.1%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 419.05 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.321036580102634e-17,-6.372100113186118e-17,1.1120986943835564e-17)
    sum a = (8.896789555068451e-17,-7.091348992391278e-17,-6.040285459307792e-17)
    sum e = 2.5920013935211537
    sum de = 8.809142651444724e-19
Info: CFL hydro = 0.011173344992490675 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011173344992490675 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6044e+04 |  512 |      1 | 3.191e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1259.7655617878659 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.100407313458453, dt = 0.011173344992490675 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 382.11 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.483504275649587e-17,-6.47748456435171e-17,1.1036093913729949e-17)
    sum a = (2.405107363268044e-17,9.628040552323025e-18,-8.209009643919685e-17)
    sum e = 2.5920013933034967
    sum de = 8.199278929421627e-19
Info: CFL hydro = 0.011180145212121228 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011180145212121228 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6238e+04 |  512 |      1 | 3.153e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1275.685034536175 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.111580658450944, dt = 0.011180145212121228 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (1.2%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 376.24 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.455401755338762e-17,-6.424792338768914e-17,9.999813477268304e-18)
    sum a = (-1.3892012540317465e-16,-1.5608608155970316e-17,-1.6589269020983453e-17)
    sum e = 2.592001394217925
    sum de = -2.188733135705112e-18
Info: CFL hydro = 0.011179486325948845 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011179486325948845 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5976e+04 |  512 |      1 | 3.205e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1255.8455206398194 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.122760803663065, dt = 0.011179486325948845 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 402.61 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.229703389092455e-17,-6.444698290655748e-17,1.0178381575076668e-17)
    sum a = (9.040814971661425e-17,-4.809629257362946e-18,9.247485589780612e-17)
    sum e = 2.592001396133999
    sum de = 2.1006417091906648e-19
Info: CFL hydro = 0.011178291246016681 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011178291246016681 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5779e+04 |  512 |      1 | 3.245e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1240.3143609569954 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.133940289989013, dt = 0.011178291246016681 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 1113.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 426.28 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4662329350418925e-17,-6.448796574867744e-17,1.1767930380157664e-17)
    sum a = (-8.69421722116126e-17,2.143402642873493e-17,-1.1285211046901943e-16)
    sum e = 2.5920013989957367
    sum de = 2.168404344971009e-19
Info: CFL hydro = 0.011176892937889416 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011176892937889416 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5241e+04 |  512 |      1 | 3.359e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1197.8845118432578 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.14511858123503, dt = 0.011176892937889416 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.2%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 425.66 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (74.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2516584830852863e-17,-6.381174885369822e-17,9.379216153737601e-18)
    sum a = (-1.779826286352204e-18,-4.5286040542547034e-17,1.0687154286537215e-16)
    sum e = 2.592001402620324
    sum de = -4.472333961502706e-19
Info: CFL hydro = 0.01117535312161397 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01117535312161397 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5560e+04 |  512 |      1 | 3.290e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1222.8444012876714 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.15629547417292, dt = 0.01117535312161397 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.1%)
   patch tree reduce : 1963.00 ns (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 409.65 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2976178131769466e-17,-6.487291173001841e-17,1.1829404643337593e-17)
    sum a = (1.0889726620444406e-16,-9.683660123771532e-18,-8.234038451071513e-17)
    sum e = 2.5920014067731514
    sum de = 7.995991022080595e-19
Info: CFL hydro = 0.01117373796409173 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01117373796409173 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5463e+04 |  512 |      1 | 3.311e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1215.001445628162 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.167470827294533, dt = 0.01117373796409173 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (1.0%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 427.31 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.469453015494175e-17,-6.480265542924135e-17,9.911993101296978e-18)
    sum a = (-7.376911581591373e-18,2.122911221813517e-17,1.3955243211016821e-16)
    sum e = 2.5920014111886798
    sum de = -2.0328790734103208e-19
Info: CFL hydro = 0.01117211641395481 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01117211641395481 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5617e+04 |  512 |      1 | 3.279e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1226.9439465691796 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.178644565258624, dt = 0.01117211641395481 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 401.90 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4021240605828245e-17,-6.456407674118592e-17,1.263442475640808e-17)
    sum a = (-5.948366799124471e-17,5.456572693685047e-18,-5.989349641244423e-18)
    sum e = 2.5920014155889826
    sum de = 4.0657581468206416e-20
Info: CFL hydro = 0.011170558852133056 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011170558852133056 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5527e+04 |  512 |      1 | 3.297e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1219.732162544264 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.189816681672578, dt = 0.011170558852133056 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.38 us    (1.1%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 395.57 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.306107116187508e-17,-6.4492356767476e-17,1.1712310808709159e-17)
    sum a = (-2.0151848939553573e-17,1.990595188683386e-17,-1.042720597366209e-17)
    sum e = 2.592001419703216
    sum de = 1.6195269951502222e-18
Info: CFL hydro = 0.011169134320950605 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011169134320950605 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6082e+04 |  512 |      1 | 3.184e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1263.1437988207415 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.20098724052471, dt = 0.011169134320950605 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.16 us    (0.9%)
   patch tree reduce : 1283.00 ns (0.3%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.2%)
   LB compute        : 425.29 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2897139793395274e-17,-6.411765649666501e-17,1.1602535338745001e-17)
    sum a = (7.306655280814311e-17,-3.9647972405187913e-17,4.126386732306031e-17)
    sum e = 2.5920014232852844
    sum de = 1.9989977555201488e-19
Info: CFL hydro = 0.011167909944644646 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011167909944644646 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5860e+04 |  512 |      1 | 3.228e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1245.5087122957048 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.212156374845662, dt = 0.011167909944644646 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.2%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 398.00 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.430226580893649e-17,-6.503391575263251e-17,1.2280215906657066e-17)
    sum a = (-5.362897625982299e-18,8.772670090362311e-17,9.458839961284937e-17)
    sum e = 2.5920014261338564
    sum de = 6.860966872759833e-19
Info: CFL hydro = 0.011166949289413832 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011166949289413832 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5958e+04 |  512 |      1 | 3.208e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1253.0973554710224 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.223324284790307, dt = 0.011166949289413832 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (0.8%)
   patch tree reduce : 1713.00 ns (0.3%)
   gen split merge   : 762.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1253.00 ns (0.2%)
   LB compute        : 601.04 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (74.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.384559985388559e-17,-6.306381198500909e-17,1.3626795004884063e-17)
    sum a = (-5.0625519401603646e-17,5.872255806615989e-17,-4.3722837850257433e-17)
    sum e = 2.592001428099134
    sum de = -6.589916329638457e-19
Info: CFL hydro = 0.011166314877811261 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011166314877811261 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5570e+04 |  512 |      1 | 3.288e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1222.5053847989134 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.234491234079721, dt = 0.011166314877811261 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.2%)
   patch tree reduce : 2.14 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 401.47 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.26 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.294983201897807e-17,-6.269203906006382e-17,1.2325589767575584e-17)
    sum a = (9.443032293610099e-17,5.4425214335296344e-17,-5.983494949513002e-18)
    sum e = 2.5920014290937794
    sum de = -6.098637220230962e-20
Info: CFL hydro = 0.01116605734061843 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01116605734061843 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5662e+04 |  512 |      1 | 3.269e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1229.6702584300922 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.245657548957533, dt = 0.01116605734061843 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (1.1%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 390.43 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.484675213995871e-17,-6.194556586430755e-17,1.2542213361638188e-17)
    sum a = (-3.3295631876595345e-17,-9.824172725325653e-17,-1.209813499380985e-16)
    sum e = 2.592001429097724
    sum de = -4.13140320023285e-19
Info: CFL hydro = 0.011166220708006557 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011166220708006557 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5597e+04 |  512 |      1 | 3.283e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1224.5705399720523 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.256823606298152, dt = 0.011166220708006557 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.1%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 1073.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 418.87 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.37109419440629e-17,-6.410594711320217e-17,1.0678957718113224e-17)
    sum a = (-2.0657108835975268e-16,1.1311264425106771e-17,3.454268121538817e-18)
    sum e = 2.592001428155933
    sum de = 7.811761356052785e-19
Info: CFL hydro = 0.011166840771645424 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011166840771645424 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5855e+04 |  512 |      1 | 3.229e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1244.8025343464988 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.267989827006158, dt = 0.011166840771645424 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.37 us    (1.1%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 391.93 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (61.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.046744272485526e-17,-6.327458088734028e-17,1.1214662011538312e-17)
    sum a = (3.931718232236259e-17,-7.207125521380142e-17,6.37927211055711e-17)
    sum e = 2.592001426372552
    sum de = 1.1909283238395463e-18
Info: CFL hydro = 0.011166743141475855 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011166743141475855 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5987e+04 |  512 |      1 | 3.203e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1255.2449538900923 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.279156667777803, dt = 0.011166743141475855 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.92 us    (0.9%)
   patch tree reduce : 1153.00 ns (0.3%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 400.35 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.227068777813315e-17,-6.446015596295318e-17,1.2351935880366983e-17)
    sum a = (-7.023873670186642e-17,3.202516377087683e-17,-1.2367450813455249e-16)
    sum e = 2.592001423894838
    sum de = -7.894347068410079e-19
Info: CFL hydro = 0.011163648526728444 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011163648526728444 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6334e+04 |  512 |      1 | 3.135e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1282.4718470426426 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.29032341091928, dt = 0.011163648526728444 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.76 us    (0.8%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 440.69 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0824578920471986e-17,-6.325994415801173e-17,9.938339214088376e-18)
    sum a = (-8.146218075100187e-17,-3.965382709691934e-17,3.5303791140472996e-17)
    sum e = 2.5920014208975015
    sum de = -1.9837511624695714e-18
Info: CFL hydro = 0.011162102389890868 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011162102389890868 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5490e+04 |  512 |      1 | 3.305e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1215.8836088499716 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.301487059446009, dt = 0.011162102389890868 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.2%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 394.41 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9899537626907355e-17,-6.417913075984494e-17,1.1238080778464e-17)
    sum a = (-2.5924574986735393e-17,-6.773878333254934e-17,-1.5122668742262313e-17)
    sum e = 2.592001417666178
    sum de = 1.5415999640028266e-19
Info: CFL hydro = 0.011162103568152254 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011162103568152254 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5879e+04 |  512 |      1 | 3.224e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1246.263088937883 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.3126491618359, dt = 0.011162103568152254 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.80 us    (0.9%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 672.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 389.19 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0104451837507114e-17,-6.512173612860383e-17,1.0760923402353128e-17)
    sum a = (1.1724605661345144e-16,8.995733845329479e-17,4.268070272206437e-18)
    sum e = 2.592001414431979
    sum de = 1.2993485410880967e-18
Info: CFL hydro = 0.011163633647631553 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011163633647631553 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6088e+04 |  512 |      1 | 3.183e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1262.6311303326413 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.323811265404052, dt = 0.011163633647631553 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.90 us    (1.0%)
   patch tree reduce : 1122.00 ns (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.2%)
   LB compute        : 392.58 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.218286740216183e-17,-6.340338410543156e-17,1.0771900949349545e-17)
    sum a = (-5.372265132752574e-17,-1.0266787420221135e-16,9.558955189892249e-17)
    sum e = 2.5920014114206804
    sum de = 1.9109063290057016e-18
Info: CFL hydro = 0.01116411504503475 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01116411504503475 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5434e+04 |  512 |      1 | 3.317e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1211.504093704541 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.334974899051684, dt = 0.01116411504503475 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.1%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.3%)
   LB compute        : 424.58 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.458984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.065479286026075e-17,-6.568964122655174e-17,1.229192529011991e-17)
    sum a = (1.4724549704525635e-16,8.818922155040543e-17,-1.4343994741983224e-18)
    sum e = 2.592001408809576
    sum de = -1.4060746924421386e-18
Info: CFL hydro = 0.01116015400777405 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01116015400777405 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5931e+04 |  512 |      1 | 3.214e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1250.5398203181223 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.346139014096718, dt = 0.01116015400777405 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.2%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 405.39 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.458984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.3175237650637806e-17,-6.406789161694793e-17,1.1784762618885503e-17)
    sum a = (-3.0327303168764527e-17,1.3740961493646786e-17,-6.103516130007148e-17)
    sum e = 2.5920014067385146
    sum de = -5.149960319306146e-19
Info: CFL hydro = 0.011156870482130286 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011156870482130286 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5877e+04 |  512 |      1 | 3.225e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1245.8620893480845 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.357299168104491, dt = 0.011156870482130286 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1652.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 405.59 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (74.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.458984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.210090171792192e-17,-6.385126802288532e-17,1.0736772798961015e-17)
    sum a = (8.417875771438155e-17,1.3672168865802582e-16,4.413266627145696e-17)
    sum e = 2.5920014053960316
    sum de = 8.131516293641283e-20
Info: CFL hydro = 0.011154311986006651 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011154311986006651 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5130e+04 |  512 |      1 | 3.384e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1186.8921011938244 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.368456038586622, dt = 0.011154311986006651 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (1.0%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 1051.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 430.08 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 us    (73.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.458984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.3479681620671735e-17,-6.162355781907935e-17,1.1800863021146912e-17)
    sum a = (-3.7270967562230696e-17,4.431708906099674e-17,6.003400901399836e-17)
    sum e = 2.5920014048598436
    sum de = 1.7042302898756523e-18
Info: CFL hydro = 0.011152511267196215 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011152511267196215 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5849e+04 |  512 |      1 | 3.231e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1243.0122110041673 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.379610350572628, dt = 0.011152511267196215 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.45 us    (1.1%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 398.83 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.458984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2188722093893247e-17,-6.192214709738186e-17,1.269516718312158e-17)
    sum a = (-9.029105588198583e-17,1.1190657775439483e-16,9.935411868222666e-18)
    sum e = 2.592001405153856
    sum de = -1.5585406229479126e-19
Info: CFL hydro = 0.011151486020669132 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011151486020669132 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5894e+04 |  512 |      1 | 3.221e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1246.3610374164468 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.390762861839825, dt = 0.011151486020669132 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.2%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 403.48 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.458984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.087434380018907e-17,-5.985544091618999e-17,1.250269419245109e-17)
    sum a = (9.742207041085748e-17,-1.5605680810104604e-16,-6.687228895629893e-17)
    sum e = 2.5920014062497603
    sum de = 3.2526065174565133e-19
Info: CFL hydro = 0.011151239095547914 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011151239095547914 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5300e+04 |  512 |      1 | 3.346e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1199.6299773462968 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.401914347860494, dt = 0.011151239095547914 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.1%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 430.56 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 us    (72.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.458984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.306985319947222e-17,-6.303161118048628e-17,1.1286381985248228e-17)
    sum a = (-1.650437599087784e-16,-9.667266986923551e-17,-1.0084706507373919e-16)
    sum e = 2.592001408071773
    sum de = -7.115076756936123e-20
Info: CFL hydro = 0.011151758832194335 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011151758832194335 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5793e+04 |  512 |      1 | 3.242e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1238.2550644748744 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.413065586956042, dt = 0.011151758832194335 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.2%)
   patch tree reduce : 1913.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1143.00 ns (0.3%)
   LB compute        : 431.80 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (74.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.458984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.963022180726195e-17,-6.402690877482797e-17,9.890769843770574e-18)
    sum a = (-8.8183366858674e-17,7.786740002790892e-18,-7.95857520510812e-17)
    sum e = 2.5920014105024403
    sum de = 8.690558038829121e-19
Info: CFL hydro = 0.011153019615174417 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011153019615174417 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5757e+04 |  512 |      1 | 3.249e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1235.5271025060656 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.424217345788238, dt = 0.011153019615174417 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (1.1%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 424.94 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.458984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.933163252895945e-17,-6.342387552649153e-17,9.19040234539925e-18)
    sum a = (-1.0140326078822426e-16,1.252377108268421e-16,9.928093503558389e-17)
    sum e = 2.5920014133918037
    sum de = 1.616138863361205e-18
Info: CFL hydro = 0.01115498231529826 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01115498231529826 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5731e+04 |  512 |      1 | 3.255e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1233.594982361446 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.435370365403411, dt = 0.01115498231529826 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.1%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 403.93 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.458984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.814313010748083e-17,-6.136009669116538e-17,1.1368347669488133e-17)
    sum a = (-8.4893030105615e-18,-1.9742020518354052e-17,-5.945146718672189e-17)
    sum e = 2.5920014165698793
    sum de = 2.9408983928669308e-18
Info: CFL hydro = 0.011157595782960295 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011157595782960295 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5830e+04 |  512 |      1 | 3.234e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1241.6121200145865 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.44652534771871, dt = 0.011157595782960295 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.4%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 423.72 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.86 us    (74.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.458984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.836853573914057e-17,-6.227928329299858e-17,9.782458046739273e-18)
    sum a = (-1.0700034608346343e-16,6.362878973709129e-17,-6.423914135009201e-17)
    sum e = 2.5920014198573815
    sum de = -4.3283383604694747e-19
Info: CFL hydro = 0.011160797379003454 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011160797379003454 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5660e+04 |  512 |      1 | 3.269e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1228.588843494108 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.45768294350167, dt = 0.011160797379003454 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.1%)
   patch tree reduce : 2.13 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 443.06 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.25 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.458984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6568218031728394e-17,-6.137180607462822e-17,8.97963344306807e-18)
    sum a = (4.914428239355395e-17,-1.2251527917173098e-16,-2.651150783281042e-17)
    sum e = 2.5920014230761206
    sum de = -6.124048208648591e-19
Info: CFL hydro = 0.01116451453038652 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01116451453038652 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5534e+04 |  512 |      1 | 3.296e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1219.0297459329342 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.468843740880674, dt = 0.01116451453038652 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.4%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 401.27 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.458984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8043600348046663e-17,-6.357024281977708e-17,8.919622852820997e-18)
    sum a = (-2.693158196453993e-19,1.651023068260926e-16,-8.221450863848955e-17)
    sum e = 2.592001426062944
    sum de = -3.6930636500287495e-19
Info: CFL hydro = 0.011168666176936714 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011168666176936714 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4544e+04 |  512 |      1 | 3.520e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1141.6916874416909 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.480008255411061, dt = 0.011168666176936714 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 411.77 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.60 us    (75.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.458984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.778013922013269e-17,-6.002522697640122e-17,7.73990246893952e-18)
    sum a = (-1.1236324370944572e-16,-1.492009640835512e-16,1.1642786344398527e-16)
    sum e = 2.5920014286773485
    sum de = 3.091670257478196e-19
Info: CFL hydro = 0.011173163612668964 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011173163612668964 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5946e+04 |  512 |      1 | 3.211e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1252.2733330716746 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.491176921587998, dt = 0.008823078412001806 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.3%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 392.15 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.458984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.627987446395587e-17,-6.33067816918631e-17,9.803681304265677e-18)
    sum a = (-1.0730479005349736e-16,1.642123936829165e-16,5.813123420128629e-17)
    sum e = 2.592001402816507
    sum de = 3.6761229910836635e-19
Info: CFL hydro = 0.011176935102980175 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011176935102980175 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5580e+04 |  512 |      1 | 3.286e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 966.5401213287706 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1751                                                    [SPH][rank=0]
Info: time since start : 788.9179807930001 (s)                                        [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14990098403950036 max=0.15010986688927985 delta=0.00020888284977949034
Number of particle pairs: 130816
Distance min=0.127124 max=1.974042 mean=0.800315
---------------- t = 15.5, dt = 0.011176935102980175 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.46 us   (1.4%)
   patch tree reduce : 1572.00 ns (0.2%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.2%)
   LB compute        : 745.71 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 5.11 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (79.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.451171875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.501672472290164e-17,-6.048774762318354e-17,1.0261079095782999e-17)
    sum a = (-1.307938132799613e-16,2.1615521872409004e-17,-1.3629283248869917e-16)
    sum e = 2.5920014315610937
    sum de = -3.1001405869507392e-19
Info: CFL hydro = 0.011181773567527663 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011181773567527663 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2532e+04 |  512 |      1 | 4.085e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 984.8745102267281 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.51117693510298, dt = 0.011181773567527663 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (0.8%)
   patch tree reduce : 1703.00 ns (0.2%)
   gen split merge   : 852.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.1%)
   LB compute        : 797.92 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.24 us    (77.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.451171875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3421321226089214e-17,-6.052287577357207e-17,7.632322508374644e-18)
    sum a = (9.943608436646656e-17,2.0404771622350993e-16,4.0207095465538686e-17)
    sum e = 2.592001432901831
    sum de = -2.964615315390051e-19
Info: CFL hydro = 0.011186729677784212 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011186729677784212 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5265e+04 |  512 |      1 | 3.354e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1200.1674638021093 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.522358708670508, dt = 0.011186729677784212 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 408.22 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.89 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.451171875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.583930891116639e-17,-5.753405564468128e-17,9.090872585965082e-18)
    sum a = (6.867553400957682e-18,-5.10177837476089e-17,2.1955093992831464e-19)
    sum e = 2.592001433388185
    sum de = -1.938011383317839e-18
Info: CFL hydro = 0.011184594968157184 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011184594968157184 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5615e+04 |  512 |      1 | 3.279e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1228.2276313374743 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.533545438348291, dt = 0.011184594968157184 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (1.5%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 418.21 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.86 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.451171875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5348978478659815e-17,-5.967833649131449e-17,8.902058777626731e-18)
    sum a = (-7.429603807174167e-18,1.366602143948459e-16,-6.051409373597494e-17)
    sum e = 2.5920014332136123
    sum de = -1.5602346888424212e-18
Info: CFL hydro = 0.011178990533740057 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011178990533740057 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5457e+04 |  512 |      1 | 3.312e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1215.5997988408017 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.544730033316448, dt = 0.011178990533740057 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.5%)
   patch tree reduce : 1933.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 395.35 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.451171875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5166019362052886e-17,-5.719887454305739e-17,7.802840405052303e-18)
    sum a = (1.0012986533664003e-16,6.845305572378279e-17,-1.9046775875247722e-16)
    sum e = 2.5920014324875367
    sum de = -1.2891841457210451e-18
Info: CFL hydro = 0.011173627350539077 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011173627350539077 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5393e+04 |  512 |      1 | 3.326e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1209.9133683407777 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.555909023850187, dt = 0.011173627350539077 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 391.58 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.451171875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.694730932133795e-17,-5.623431408030565e-17,4.978683481107749e-18)
    sum a = (-1.0083828303614206e-16,1.3577030125166978e-16,-5.345333550788034e-17)
    sum e = 2.5920014313543693
    sum de = 1.819426770702237e-18
Info: CFL hydro = 0.01116857298667684 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01116857298667684 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5693e+04 |  512 |      1 | 3.263e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1232.8865318763976 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.567082651200726, dt = 0.01116857298667684 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.2%)
   LB compute        : 403.75 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.62 us    (73.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.451171875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4703498715270574e-17,-5.457304530151474e-17,5.192379729304641e-18)
    sum a = (-7.204490910101002e-17,-1.4800660697034118e-17,4.1246303247866046e-17)
    sum e = 2.592001429925151
    sum de = 5.929230630780102e-19
Info: CFL hydro = 0.011163893360564156 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011163893360564156 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5415e+04 |  512 |      1 | 3.321e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1210.561956600109 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.578251224187403, dt = 0.011163893360564156 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.2%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 419.55 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.67 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.451171875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.397312592177571e-17,-5.614942105020004e-17,6.1415716262613885e-18)
    sum a = (7.256012197337514e-17,1.5105104667068048e-18,-5.500482881670709e-18)
    sum e = 2.5920014283223267
    sum de = -9.486769009248164e-20
Info: CFL hydro = 0.011159651731157 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 0.011159651731157 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5465e+04 |  512 |      1 | 3.311e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1213.963067628498 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.589415117547967, dt = 0.011159651731157 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 396.88 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.71 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.451171875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.573685180586651e-17,-5.561957144850638e-17,5.774189720114675e-18)
    sum a = (9.722008354612344e-17,1.2422484915730613e-16,-9.615306597807183e-17)
    sum e = 2.592001426668684
    sum de = 0
Info: CFL hydro = 0.011155907767522906 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011155907767522906 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5806e+04 |  512 |      1 | 3.239e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1240.270835251205 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.600574769279124, dt = 0.011155907767522906 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.5%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1303.00 ns (0.3%)
   LB compute        : 387.02 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.63 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.451171875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6751177148335323e-17,-5.367069093840937e-17,4.1451217458465805e-18)
    sum a = (6.949226350611015e-17,3.017508118374756e-17,8.687484325670125e-17)
    sum e = 2.5920014250796317
    sum de = -4.573977915173222e-19
Info: CFL hydro = 0.01115271664367748 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01115271664367748 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5236e+04 |  512 |      1 | 3.361e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1195.0870013747667 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.611730677046646, dt = 0.01115271664367748 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.5%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 388.23 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.06 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.451171875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.744934913730736e-17,-5.330770005106122e-17,6.172308757851352e-18)
    sum a = (-9.075357652876814e-17,-1.778186972667406e-16,-2.812301173188425e-17)
    sum e = 2.5920014236585476
    sum de = -4.1165801236558996e-19
Info: CFL hydro = 0.011150128018953799 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011150128018953799 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5434e+04 |  512 |      1 | 3.317e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1210.273640217373 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.622883393690323, dt = 0.011150128018953799 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 424.64 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (74.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.451171875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.559780287724524e-17,-5.644215563677113e-17,5.243608281954581e-18)
    sum a = (-9.739279695220037e-17,3.674404530640274e-17,1.1416648876272361e-17)
    sum e = 2.592001422489146
    sum de = 3.6591823321385775e-19
Info: CFL hydro = 0.011148185850924457 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011148185850924457 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5656e+04 |  512 |      1 | 3.270e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1227.444201795799 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.634033521709277, dt = 0.011148185850924457 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.4%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 392.83 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.451171875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.455713142198503e-17,-5.552809189020291e-17,5.616113043366289e-18)
    sum a = (5.705982561443612e-17,-6.194263851844184e-18,-5.889819881810254e-17)
    sum e = 2.5920014216322627
    sum de = 4.929731753020028e-19
Info: CFL hydro = 0.011146927227296499 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011146927227296499 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5561e+04 |  512 |      1 | 3.290e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1219.7281114678615 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.645181707560202, dt = 0.011146927227296499 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.2%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 401.61 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (72.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.451171875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.599738558791477e-17,-5.540002050857806e-17,4.54250894711683e-18)
    sum a = (-4.672044001674536e-17,-5.1954534424636375e-17,4.6310611595545835e-18)
    sum e = 2.592001421124493
    sum de = 3.2017845406212553e-19
Info: CFL hydro = 0.011146381877253997 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011146381877253997 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5587e+04 |  512 |      1 | 3.285e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1221.6731470617813 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.656328634787497, dt = 0.011146381877253997 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (1.5%)
   patch tree reduce : 1684.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 399.83 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (72.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.451171875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.491865863640032e-17,-5.635982403429801e-17,5.037230398421966e-18)
    sum a = (3.556139757665555e-17,1.1022042653574538e-16,-8.498085048158632e-17)
    sum e = 2.59200142097897
    sum de = 1.1265538198482195e-18
Info: CFL hydro = 0.01114657191469714 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01114657191469714 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5535e+04 |  512 |      1 | 3.296e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1217.487766499565 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.667475016664751, dt = 0.01114657191469714 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 1082.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 761.00 ns  (0.2%)
   LB compute        : 417.42 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.82 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.451171875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.579247137731501e-17,-5.381815598639456e-17,3.536233805778721e-18)
    sum a = (1.9472704698708652e-17,-3.196661685356261e-17,1.86764666232353e-18)
    sum e = 2.592001421186006
    sum de = -1.5058128219813324e-18
Info: CFL hydro = 0.011147511958058 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 0.011147511958058 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6591e+04 |  512 |      1 | 3.086e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1300.2706033921804 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.678621588579448, dt = 0.011147511958058 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 413.77 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.43 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.458984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.587443706155492e-17,-5.4891760082644015e-17,4.094625029663068e-18)
    sum a = (5.64626470578311e-17,-1.4918925470008837e-16,6.3763447646914e-17)
    sum e = 2.5920014217166383
    sum de = 7.0070800561612e-19
Info: CFL hydro = 0.011149208552795819 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011149208552795819 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5377e+04 |  512 |      1 | 3.330e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1205.2856227130817 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.689769100537506, dt = 0.011149208552795819 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.2%)
   patch tree reduce : 1883.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 400.18 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.458984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.653894457307128e-17,-5.771116006955679e-17,5.256049501883852e-18)
    sum a = (8.998075722022048e-17,1.6147239795261113e-17,6.811348360336034e-17)
    sum e = 2.5920014225252066
    sum de = 6.547564682275742e-19
Info: CFL hydro = 0.011151658720790528 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011151658720790528 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6521e+04 |  512 |      1 | 3.099e-02 | 0.1% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1295.1027440465878 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.700918309090302, dt = 0.011151658720790528 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.4%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 388.57 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.458984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7739156378012734e-17,-5.611209739041223e-17,5.918544463117542e-18)
    sum a = (3.2072001304728205e-17,1.2563582986457878e-16,-4.929650437857091e-18)
    sum e = 2.5920014235529045
    sum de = -6.115577879176048e-19
Info: CFL hydro = 0.01115485128356589 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01115485128356589 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5547e+04 |  512 |      1 | 3.293e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1219.0602108206779 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.712069967811091, dt = 0.01115485128356589 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.4%)
   patch tree reduce : 1834.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 420.79 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.32 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.458984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7771357182535556e-17,-5.427555377791188e-17,5.5196021093561335e-18)
    sum a = (-1.0424864096969522e-16,-1.2424826792423183e-16,-7.612270189194525e-17)
    sum e = 2.5920014247344847
    sum de = 9.50370966819325e-19
Info: CFL hydro = 0.011158766884679754 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011158766884679754 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5747e+04 |  512 |      1 | 3.251e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1235.0661926504802 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.723224819094657, dt = 0.011158766884679754 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 399.99 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.458984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5830526873569254e-17,-5.690467628355344e-17,4.1925081570477754e-18)
    sum a = (-1.2673065721835464e-16,2.77863669573275e-17,9.589985056068784e-18)
    sum e = 2.5920014260015765
    sum de = -4.387630666777276e-19
Info: CFL hydro = 0.011163378434261175 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011163378434261175 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5915e+04 |  512 |      1 | 3.217e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1248.7110686194349 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.734383585979337, dt = 0.011163378434261175 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.5%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 390.09 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.458984375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.451614857986508e-17,-5.5436246413666234e-17,4.887020963687677e-18)
    sum a = (1.5693501186075931e-16,7.775908823087763e-17,-3.590096969707801e-17)
    sum e = 2.5920014272883214
    sum de = -3.8285889215894375e-19
Info: CFL hydro = 0.011168650405929846 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011168650405929846 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5861e+04 |  512 |      1 | 3.228e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1244.9503049846485 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.745546964413599, dt = 0.011168650405929846 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.1%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 424.59 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.69 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.770402822762421e-17,-5.51105791861059e-17,4.124264406553391e-18)
    sum a = (-8.622204512864773e-17,-3.5508705351072755e-17,1.6322880547203766e-17)
    sum e = 2.5920014285341146
    sum de = 4.0657581468206416e-20
Info: CFL hydro = 0.011174164858666579 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011174164858666579 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6197e+04 |  512 |      1 | 3.161e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1271.9130825655056 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.756715614819528, dt = 0.011174164858666579 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.53 us    (1.1%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 385.16 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.554364697872959e-17,-5.603836486641964e-17,4.762791723511573e-18)
    sum a = (8.653234379041308e-17,1.4847864149118705e-17,-1.202787869303279e-16)
    sum e = 2.5920014296834877
    sum de = 4.54009659728305e-19
Info: CFL hydro = 0.011179044141079019 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011179044141079019 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5954e+04 |  512 |      1 | 3.209e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1253.5013251773632 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.767889779678194, dt = 0.011179044141079019 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 381.67 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.738494752826172e-17,-5.523590618098165e-17,2.6924263599875653e-18)
    sum a = (-8.577708855705968e-17,8.524650711889959e-17,-4.284463409054417e-17)
    sum e = 2.592001430684587
    sum de = 7.182839392716467e-19
Info: CFL hydro = 0.011179493915543322 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011179493915543322 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5344e+04 |  512 |      1 | 3.337e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1206.06708011794 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 15.779068823819273, dt = 0.011179493915543322 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (0.8%)
   patch tree reduce : 1894.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.1%)
   LB compute        : 712.56 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.46 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5382642956115495e-17,-5.385017383180077e-17,2.5270313185749014e-18)
    sum a = (1.361596382518093e-16,-4.9019870194261236e-17,9.691856692195521e-17)
    sum e = 2.592001431464885
    sum de = -5.285485590866834e-19
Info: CFL hydro = 0.011178965271441566 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011178965271441566 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5318e+04 |  512 |      1 | 3.342e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1204.1136937260035 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.790248317734816, dt = 0.011178965271441566 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 406.10 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.96 us    (73.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.850319364896327e-17,-5.572513885878857e-17,4.4539567346790766e-18)
    sum a = (-1.1603999011677857e-17,-5.469306648200889e-17,-1.559104408077605e-16)
    sum e = 2.5920014320506364
    sum de = -1.9651164376299768e-19
Info: CFL hydro = 0.011179220759546991 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011179220759546991 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5375e+04 |  512 |      1 | 3.330e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1208.5339190093102 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.801427283006257, dt = 0.011179220759546991 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1694.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 383.63 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.76 us    (74.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.730590918988753e-17,-5.566348163649204e-17,1.2719317786513696e-18)
    sum a = (-2.074902749615859e-17,1.558811673491034e-17,-1.5151942200919423e-17)
    sum e = 2.5920014324638023
    sum de = -8.504210790433175e-19
Info: CFL hydro = 0.011179190431205568 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011179190431205568 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5863e+04 |  512 |      1 | 3.228e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1246.8574197283203 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.812606503765805, dt = 0.011179190431205568 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 383.12 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7130268437944877e-17,-5.5354463688542934e-17,1.924729906704892e-18)
    sum a = (7.334318699245279e-17,4.228258368432769e-17,-2.7634144972310537e-18)
    sum e = 2.592001432704483
    sum de = -3.8285889215894375e-19
Info: CFL hydro = 0.01117651969518806 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01117651969518806 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5505e+04 |  512 |      1 | 3.302e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1218.742089203859 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.82378569419701, dt = 0.01117651969518806 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.3%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 421.83 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8418300618857655e-17,-5.448339533437735e-17,1.895456448047783e-18)
    sum a = (4.185665486086676e-17,-2.969206911590527e-17,-6.873408092689104e-18)
    sum e = 2.592001432766686
    sum de = -1.3552527156068805e-19
Info: CFL hydro = 0.011174330529999143 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011174330529999143 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6045e+04 |  512 |      1 | 3.191e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1260.9194598782854 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.834962213892197, dt = 0.011174330529999143 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (1.6%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 387.72 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.34 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.852953976175467e-17,-5.521047486377328e-17,1.8295911660692887e-18)
    sum a = (6.939273374667598e-17,-1.337797060629864e-17,8.948310842304963e-17)
    sum e = 2.592001432718345
    sum de = 8.504210790433175e-19
Info: CFL hydro = 0.011172684182790462 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011172684182790462 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5791e+04 |  512 |      1 | 3.242e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1240.6756745177772 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.846136544422196, dt = 0.011172684182790462 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 1333.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 414.43 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.32 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.462890625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.978537113814463e-17,-5.552077352553864e-17,3.3401016327760934e-18)
    sum a = (2.9583757318873974e-17,9.589253219602356e-17,3.4724176659062245e-17)
    sum e = 2.592001432596013
    sum de = -2.270048298641525e-19
Info: CFL hydro = 0.01117163158422843 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01117163158422843 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4786e+04 |  512 |      1 | 3.463e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1161.5750531154774 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.857309228604986, dt = 0.01117163158422843 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1143.00 ns (0.3%)
   LB compute        : 393.18 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.462890625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.986733682238453e-17,-5.381486272229563e-17,3.44694975687454e-18)
    sum a = (6.821886805452592e-17,7.534695523753187e-17,-1.4109807072726356e-16)
    sum e = 2.5920014324376432
    sum de = -6.166399856011306e-19
Info: CFL hydro = 0.011171213518015422 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011171213518015422 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5899e+04 |  512 |      1 | 3.220e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1248.8454463427745 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.868480860189214, dt = 0.011171213518015422 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.1%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 433.87 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.462890625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0663574897857887e-17,-5.285103409601033e-17,9.221139476989216e-19)
    sum a = (2.7997135859658685e-17,2.3737847625049378e-17,-1.9712747059696946e-17)
    sum e = 2.5920014322819602
    sum de = 4.0318768289304696e-19
Info: CFL hydro = 0.011171458883133461 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011171458883133461 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5600e+04 |  512 |      1 | 3.282e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1225.3770862574413 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.879652073707229, dt = 0.011171458883133461 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 394.36 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.25 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.462890625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.085092503326338e-17,-5.2829810838483927e-17,1.270468105718514e-18)
    sum a = (-1.4290717047227286e-16,5.994033394629561e-17,7.54084295007118e-18)
    sum e = 2.592001432166028
    sum de = -3.5236570605778894e-19
Info: CFL hydro = 0.011172385188634214 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011172385188634214 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3651e+04 |  512 |      1 | 3.751e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1072.2944333312694 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.890823532590362, dt = 0.011172385188634214 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1243.00 ns (0.3%)
   LB compute        : 410.29 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.22 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.818996764133221e-17,-5.184805221877114e-17,1.6817601998508902e-18)
    sum a = (-4.167955043599125e-17,4.4943541076258864e-17,-1.291486449034318e-16)
    sum e = 2.5920014321216507
    sum de = 6.522153693858113e-19
Info: CFL hydro = 0.011173997543478599 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011173997543478599 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6076e+04 |  512 |      1 | 3.185e-02 | 0.0% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1262.832672561532 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.901995917778997, dt = 0.011173997543478599 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.2%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 406.72 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.22 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.82953520924978e-17,-5.140968217538094e-17,-5.1960389116367795e-19)
    sum a = (1.1245106408541704e-16,-3.559067103531266e-17,3.3395161636029515e-17)
    sum e = 2.5920014321759517
    sum de = -3.7269449679189215e-20
Info: CFL hydro = 0.011176288958996087 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011176288958996087 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5327e+04 |  512 |      1 | 3.341e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1204.1829806445905 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.913169915322475, dt = 0.011176288958996087 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.2%)
   patch tree reduce : 1913.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 404.74 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.60 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0505498221109503e-17,-5.2516584830852863e-17,6.484071092549559e-19)
    sum a = (-3.1872941785859865e-17,-2.948130021357409e-17,7.725851208784106e-17)
    sum e = 2.59200143235065
    sum de = 1.6042804020996448e-18
Info: CFL hydro = 0.011179240908588768 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011179240908588768 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5943e+04 |  512 |      1 | 3.211e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1252.8789928969334 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.924346204281472, dt = 0.011179240908588768 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 428.74 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.74 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9299431724436626e-17,-5.2744551890145095e-17,1.776898940486493e-18)
    sum a = (-5.334795105671475e-17,-6.858478628773978e-17,1.0354461428899175e-16)
    sum e = 2.5920014326598153
    sum de = -8.355980024663673e-19
Info: CFL hydro = 0.011182822729991382 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011182822729991382 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5616e+04 |  512 |      1 | 3.279e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1227.459321588686 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.935525445190061, dt = 0.011182822729991382 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.2%)
   patch tree reduce : 1632.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 399.59 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.859979606253173e-17,-5.397916000900865e-17,3.0883498883249593e-18)
    sum a = (-1.8266638202035778e-16,8.032051586337463e-17,-8.481984645897223e-18)
    sum e = 2.592001433109992
    sum de = -9.330067914006118e-19
Info: CFL hydro = 0.011185337418261283 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011185337418261283 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5385e+04 |  512 |      1 | 3.328e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1209.6808886172566 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.946708267920052, dt = 0.011185337418261283 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.19 us    (1.0%)
   patch tree reduce : 1021.00 ns (0.2%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 415.79 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5628540008835204e-17,-5.220994535141965e-17,2.3579770948300993e-18)
    sum a = (9.639164466612727e-17,3.345078120747802e-17,-4.2390895481358995e-17)
    sum e = 2.5920014336829937
    sum de = -1.0672615135404184e-18
Info: CFL hydro = 0.01118372360565833 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01118372360565833 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5908e+04 |  512 |      1 | 3.218e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1251.144298476025 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.957893605338313, dt = 0.01118372360565833 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.2%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1273.00 ns (0.3%)
   LB compute        : 410.85 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (73.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8536858126418946e-17,-5.166875228449635e-17,1.7505528276950955e-18)
    sum a = (-4.628719282862015e-17,-6.854965813735126e-17,-1.8303083658063878e-16)
    sum e = 2.59200143433695
    sum de = 3.9132922163148676e-19
Info: CFL hydro = 0.011183007617509703 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011183007617509703 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5525e+04 |  512 |      1 | 3.298e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1220.8423378797054 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.969077328943971, dt = 0.011183007617509703 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1123.00 ns (0.3%)
   LB compute        : 401.30 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (73.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7092212941690635e-17,-5.3151452965478904e-17,-1.0450624740587777e-18)
    sum a = (9.639164466612727e-17,2.4017409155224767e-17,9.217919396536933e-17)
    sum e = 2.5920014351135086
    sum de = -4.2012834183813297e-19
Info: CFL hydro = 0.011183201044008013 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011183201044008013 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5255e+04 |  512 |      1 | 3.356e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1199.4840406781416 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.98026033656148, dt = 0.011183201044008013 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1933.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1223.00 ns (0.3%)
   LB compute        : 390.21 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.89 us    (74.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.888521228443854e-17,-5.239967395534104e-17,1.6173585908052513e-18)
    sum a = (-1.0245710529988017e-16,1.5807667674838654e-19,-1.3850736963610944e-17)
    sum e = 2.592001435993484
    sum de = 1.277325684459485e-18
Info: CFL hydro = 0.011184302509825429 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011184302509825429 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4836e+04 |  512 |      1 | 3.451e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1166.6140368113345 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.991443537605488, dt = 0.008556462394512465 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 395.48 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.37 us    (72.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.688290771229231e-17,-5.228038461131332e-17,8.372209175933065e-19)
    sum a = (2.8079101543898586e-17,3.6943104825271076e-18,-1.0382271214623429e-16)
    sum e = 2.59200141027622
    sum de = -1.633079522306291e-18
Info: CFL hydro = 0.011185079292558991 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011185079292558991 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5507e+04 |  512 |      1 | 3.302e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 932.9566229703037 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1796                                                    [SPH][rank=0]
Info: time since start : 791.387838188 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.1498945197346636 max=0.15011059434531485 delta=0.00021607461065123457
Number of particle pairs: 130816
Distance min=0.126761 max=1.974708 mean=0.800382
---------------- t = 16, dt = 0.011185079292558991 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.84 us   (1.7%)
   patch tree reduce : 1553.00 ns (0.2%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.1%)
   LB compute        : 624.71 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 4.70 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.05 us    (78.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.783429511864834e-17,-5.252097584965143e-17,-8.225841882647522e-19)
    sum a = (-6.207144173653312e-17,-1.8322257773484285e-17,-7.146236727373357e-17)
    sum e = 2.592001437273093
    sum de = -7.148958074826295e-19
Info: CFL hydro = 0.01117931288366868 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01117931288366868 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3972e+04 |  512 |      1 | 3.664e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1098.8554789660932 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.01118507929256, dt = 0.01117931288366868 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.43 us    (0.8%)
   patch tree reduce : 862.00 ns  (0.2%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 672.00 ns  (0.2%)
   LB compute        : 425.18 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.674824980246961e-17,-5.2844813486045694e-17,-1.345115425294141e-18)
    sum a = (-3.2077855996459624e-16,-8.25218799543892e-18,3.038438641314589e-17)
    sum e = 2.592001438390835
    sum de = -8.267041565201971e-19
Info: CFL hydro = 0.011173977907518092 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011173977907518092 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6044e+04 |  512 |      1 | 3.191e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1261.1253058085379 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.02236439217623, dt = 0.011173977907518092 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.80 us    (0.9%)
   patch tree reduce : 962.00 ns  (0.2%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 400.54 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.62 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1714678586379783e-17,-5.282514538101045e-17,-4.537386091851836e-19)
    sum a = (1.0609872355682448e-16,9.840858596760205e-17,5.0994364980683214e-18)
    sum e = 2.5920014392931963
    sum de = -1.2739375526704677e-18
Info: CFL hydro = 0.011169073096332562 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011169073096332562 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5819e+04 |  512 |      1 | 3.237e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1242.8358301612877 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.033538370083747, dt = 0.011169073096332562 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.86 us    (0.9%)
   patch tree reduce : 1152.00 ns (0.3%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 390.97 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.511771815526866e-17,-5.074883384619672e-17,-5.810781543436061e-19)
    sum a = (4.96712046493819e-17,-1.9684351804799548e-16,1.2550263562768892e-16)
    sum e = 2.5920014401501654
    sum de = 9.283481101907132e-19
Info: CFL hydro = 0.011164648345606407 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011164648345606407 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5927e+04 |  512 |      1 | 3.215e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1250.8006944989045 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.04470744318008, dt = 0.011164648345606407 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.2%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 396.57 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.548070904261681e-17,-5.4987813618862654e-17,1.4666002787211418e-18)
    sum a = (1.9437576548320124e-18,-4.268363006793008e-17,-2.4089129128934682e-17)
    sum e = 2.5920014409252996
    sum de = 3.3881317890172014e-20
Info: CFL hydro = 0.01116074517750736 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01116074517750736 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5552e+04 |  512 |      1 | 3.292e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1220.878983528157 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.055872091525686, dt = 0.01116074517750736 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (1.2%)
   patch tree reduce : 1853.00 ns (0.5%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 372.69 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.499842881124094e-17,-5.441801032007995e-17,4.303198422594967e-19)
    sum a = (-6.67317763547448e-17,2.1662359406260379e-19,4.6872662001762323e-17)
    sum e = 2.592001441586699
    sum de = -1.0909784360635388e-18
Info: CFL hydro = 0.01115739900359529 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01115739900359529 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5739e+04 |  512 |      1 | 3.253e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1235.0907436912244 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.06703283670319, dt = 0.01115739900359529 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.13 us    (1.0%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 379.45 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3740401925451696e-17,-5.4204862949232876e-17,1.463672932855431e-18)
    sum a = (-6.43313527448619e-17,-1.0107832539713035e-16,7.315437318411444e-18)
    sum e = 2.592001442107949
    sum de = 6.844026213814747e-19
Info: CFL hydro = 0.011154638790499235 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011154638790499235 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6432e+04 |  512 |      1 | 3.116e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1289.1278049845903 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.078190235706785, dt = 0.011154638790499235 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.2%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 403.41 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3341551051248594e-17,-5.609142301023565e-17,1.23973097412855e-18)
    sum a = (-8.595858400073375e-17,-8.868394300171057e-17,1.469673991880138e-17)
    sum e = 2.592001442468015
    sum de = -2.2429432443293873e-18
Info: CFL hydro = 0.011152485756136931 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011152485756136931 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5658e+04 |  512 |      1 | 3.270e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1228.0978499425273 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.089344874497286, dt = 0.011152485756136931 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 400.01 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (75.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2295756740723386e-17,-5.693056499855332e-17,1.4870916997811178e-18)
    sum a = (1.8313475735887153e-17,6.706549378343584e-17,-1.1589215915056017e-16)
    sum e = 2.592001442652212
    sum de = -6.844026213814747e-19
Info: CFL hydro = 0.011150952970472939 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011150952970472939 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6048e+04 |  512 |      1 | 3.191e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1258.3794901806987 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.100497360253424, dt = 0.011150952970472939 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 391.60 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.292367242891837e-17,-5.543313610868392e-17,-5.883965190078832e-19)
    sum a = (1.2941796072307722e-16,-7.684282897491013e-18,-2.6748622847933002e-17)
    sum e = 2.5920014426533315
    sum de = 1.3484764520288461e-18
Info: CFL hydro = 0.01115004584554588 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01115004584554588 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6285e+04 |  512 |      1 | 3.144e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1276.8303310570093 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.111648313223895, dt = 0.01115004584554588 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (1.1%)
   patch tree reduce : 1322.00 ns (0.3%)
   gen split merge   : 672.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 394.75 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.509283571541012e-17,-5.566951928734006e-17,-1.9759584593548318e-19)
    sum a = (7.287920267273762e-17,-1.5252057429526732e-16,-8.09879507207567e-17)
    sum e = 2.592001442472616
    sum de = 1.802486111757151e-18
Info: CFL hydro = 0.011149724861988706 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011149724861988706 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5686e+04 |  512 |      1 | 3.264e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1229.738767488977 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.122798359069442, dt = 0.011149724861988706 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (1.2%)
   patch tree reduce : 1352.00 ns (0.3%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 377.63 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5523887394136044e-17,-5.817935244895392e-17,-1.4885553727139733e-18)
    sum a = (1.2277288560791355e-17,-1.102555546861339e-16,5.327769475593768e-19)
    sum e = 2.5920014421204236
    sum de = -2.303929616531697e-19
Info: CFL hydro = 0.01114645891246731 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01114645891246731 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6126e+04 |  512 |      1 | 3.175e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1264.253104777336 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.13394808393143, dt = 0.01114645891246731 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.69 us    (0.7%)
   patch tree reduce : 1072.00 ns (0.2%)
   gen split merge   : 672.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.1%)
   LB compute        : 522.06 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.536068786212266e-17,-5.91611110686667e-17,-1.008470650737392e-18)
    sum a = (1.5854505208690028e-17,3.5508705351072755e-17,2.1457445195660618e-17)
    sum e = 2.5920014415768438
    sum de = -1.5178830414797062e-18
Info: CFL hydro = 0.011142450007890513 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011142450007890513 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3861e+04 |  512 |      1 | 3.694e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1086.3322995337307 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.145094542843896, dt = 0.011142450007890513 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.52 us    (0.8%)
   patch tree reduce : 682.00 ns  (0.2%)
   gen split merge   : 591.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 422.09 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.65 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5689282435548704e-17,-5.812098849075631e-17,-5.752234626121844e-19)
    sum a = (4.89686416416113e-17,9.044327786700279e-17,-1.4966348473033353e-16)
    sum e = 2.5920014408995327
    sum de = 4.811147140404426e-19
Info: CFL hydro = 0.011138972201466278 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011138972201466278 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6015e+04 |  512 |      1 | 3.197e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1254.7369175394522 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.156236992851788, dt = 0.011138972201466278 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.60 us    (0.9%)
   patch tree reduce : 982.00 ns  (0.2%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 631.00 ns  (0.2%)
   LB compute        : 402.93 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.86 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6194981433850254e-17,-5.667414779662872e-17,-3.2786273695961652e-18)
    sum a = (4.967705934111333e-17,1.87625305916872e-16,-1.4596331955607499e-16)
    sum e = 2.5920014401434996
    sum de = 8.267041565201971e-19
Info: CFL hydro = 0.011136069497062365 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011136069497062365 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6231e+04 |  512 |      1 | 3.155e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1271.2022482954717 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.167375965053253, dt = 0.011136069497062365 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (0.8%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 612.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 671.00 ns  (0.2%)
   LB compute        : 391.77 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.44 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7043545816673194e-17,-5.404758671861964e-17,-4.818411294960079e-18)
    sum a = (1.2506207007489944e-16,7.035875788236056e-18,-6.801980853565758e-17)
    sum e = 2.5920014393570123
    sum de = -8.605854744103691e-19
Info: CFL hydro = 0.011133777648133903 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011133777648133903 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6111e+04 |  512 |      1 | 3.178e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1261.5248367736688 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.178512034550316, dt = 0.011133777648133903 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.51 us    (0.9%)
   patch tree reduce : 592.00 ns  (0.1%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.3%)
   LB compute        : 394.69 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.49 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.892839063595777e-17,-5.5090087765045926e-17,-5.127246283792575e-18)
    sum a = (1.5816449712435787e-17,-8.201837646548693e-17,3.0502943920707182e-18)
    sum e = 2.5920014385930545
    sum de = -2.879912020664621e-19
Info: CFL hydro = 0.011132123206947711 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011132123206947711 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5964e+04 |  512 |      1 | 3.207e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1249.734139128648 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.18964581219845, dt = 0.011132123206947711 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.0%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 442.25 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.25 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8298096479246906e-17,-5.651314377401462e-17,-4.689608076868801e-18)
    sum a = (2.316086775491777e-16,2.851088505909094e-17,1.497630144897677e-17)
    sum e = 2.592001437904721
    sum de = 5.370188885592264e-19
Info: CFL hydro = 0.011131123074242364 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011131123074242364 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5875e+04 |  512 |      1 | 3.225e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1242.6111109822814 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.200777935405398, dt = 0.011131123074242364 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.29 us    (1.0%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 390.69 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.196697564456565e-17,-5.5491134148648315e-17,-4.41443756549198e-18)
    sum a = (7.530158137661336e-17,-1.6396064193846538e-17,-7.985799521659231e-17)
    sum e = 2.5920014373446025
    sum de = 9.385125055577648e-19
Info: CFL hydro = 0.011130784649912358 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011130784649912358 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6185e+04 |  512 |      1 | 3.163e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1266.7371582105184 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.21190905847964, dt = 0.011130784649912358 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.71 us    (1.0%)
   patch tree reduce : 862.00 ns  (0.2%)
   gen split merge   : 591.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 511.00 ns  (0.1%)
   LB compute        : 367.42 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1897451180255013e-17,-5.592950419203851e-17,-5.895674573541676e-18)
    sum a = (4.849002059256757e-17,4.6404286663248586e-17,5.695444116327053e-17)
    sum e = 2.592001436960998
    sum de = -1.2705494208814505e-18
Info: CFL hydro = 0.011131105265409268 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011131105265409268 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6088e+04 |  512 |      1 | 3.183e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1259.0974276475981 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.223039843129552, dt = 0.011131105265409268 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.80 us    (0.9%)
   patch tree reduce : 731.00 ns  (0.2%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 396.45 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.56 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.237332784254964e-17,-5.5059716551689176e-17,-4.499330595597595e-18)
    sum a = (-7.309289892093451e-17,7.668036127936317e-17,-6.605263211389988e-17)
    sum e = 2.592001436796209
    sum de = -3.5575383784680614e-20
Info: CFL hydro = 0.011132073013502655 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011132073013502655 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6054e+04 |  512 |      1 | 3.189e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1256.4602510969455 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.23417094839496, dt = 0.011132073013502655 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.85 us    (1.0%)
   patch tree reduce : 641.00 ns  (0.2%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.2%)
   LB compute        : 390.47 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.103260343605406e-17,-5.354005812915202e-17,-5.930802723930206e-18)
    sum a = (1.9731774807824066e-17,2.5558656753521535e-17,8.360499792470221e-18)
    sum e = 2.5920014368829465
    sum de = -1.5924219408380846e-19
Info: CFL hydro = 0.011132691542402755 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011132691542402755 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6152e+04 |  512 |      1 | 3.170e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1264.2435254320762 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.245303021408464, dt = 0.011132691542402755 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.91 us    (1.0%)
   patch tree reduce : 692.00 ns  (0.2%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.2%)
   LB compute        : 366.18 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.62 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.153208182439098e-17,-5.363885605211977e-17,-5.280931941742395e-18)
    sum a = (2.828694310036406e-17,-3.6591823321385775e-17,-6.73757924452012e-17)
    sum e = 2.5920014372310343
    sum de = -3.3881317890172014e-19
Info: CFL hydro = 0.011133776397911613 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011133776397911613 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5979e+04 |  512 |      1 | 3.204e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1250.8039423022158 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.256435712950868, dt = 0.011133776397911613 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (0.8%)
   patch tree reduce : 561.00 ns  (0.1%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 521.00 ns  (0.1%)
   LB compute        : 386.66 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.65 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.478515625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2122490893681536e-17,-5.4852972749923345e-17,-6.568964122655174e-18)
    sum a = (-9.706493421524076e-17,-3.0223382390531796e-17,7.735218715554381e-17)
    sum e = 2.5920014378536367
    sum de = 1.782157321023048e-18
Info: CFL hydro = 0.011135483163276708 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011135483163276708 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6354e+04 |  512 |      1 | 3.131e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1280.3003140629867 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.26756948934878, dt = 0.011135483163276708 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (1.0%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 399.82 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.478515625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.020928741132288e-17,-5.496640740221964e-17,-4.885740249871429e-18)
    sum a = (7.769907764063056e-17,-4.516016467032147e-17,1.7704587795819292e-17)
    sum e = 2.5920014387432895
    sum de = 1.802486111757151e-18
Info: CFL hydro = 0.011137778098480605 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011137778098480605 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5984e+04 |  512 |      1 | 3.203e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1251.506579764821 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.278704972512056, dt = 0.011137778098480605 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 23.32 us   (5.4%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 396.51 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.478515625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2382018400588465e-17,-5.550503904151044e-17,-5.105291189799743e-18)
    sum a = (-5.2128711503646176e-17,3.7812526547387206e-17,1.491189983993113e-16)
    sum e = 2.5920014398755087
    sum de = 1.9651164376299768e-19
Info: CFL hydro = 0.011137492789040741 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011137492789040741 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5846e+04 |  512 |      1 | 3.231e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1240.9443777873987 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.289842750610536, dt = 0.011137492789040741 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.33 us    (1.0%)
   patch tree reduce : 1332.00 ns (0.3%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 401.08 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.478515625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.077243557223901e-17,-5.4480833906744854e-17,-2.652175354334041e-18)
    sum a = (9.646190096690432e-17,-1.319501148969171e-17,6.659126375319069e-17)
    sum e = 2.592001441178286
    sum de = 2.236166980751353e-19
Info: CFL hydro = 0.011139164835193897 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011139164835193897 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6250e+04 |  512 |      1 | 3.151e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1272.5247351593803 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.300980243399575, dt = 0.011139164835193897 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.74 us    (0.9%)
   patch tree reduce : 982.00 ns  (0.2%)
   gen split merge   : 1072.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 420.13 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.478515625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2750040663643306e-17,-5.5083135318614864e-17,-2.286257121120183e-18)
    sum a = (1.378252980493988e-16,-6.5836008519837285e-18,1.0294304471358817e-16)
    sum e = 2.5920014426460116
    sum de = 4.0657581468206416e-19
Info: CFL hydro = 0.011142911402560135 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011142911402560135 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6825e+04 |  512 |      1 | 3.043e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1317.7857333707702 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.312119408234768, dt = 0.011142911402560135 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.64 us    (0.9%)
   patch tree reduce : 951.00 ns  (0.2%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 384.82 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.478515625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.451930106101146e-17,-5.5078744299816296e-17,-8.4893030105615e-19)
    sum a = (4.332471881252076e-18,-2.5222011978964787e-17,8.150316359312182e-17)
    sum e = 2.5920014442215114
    sum de = 5.759824041329242e-19
Info: CFL hydro = 0.011148700393826063 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011148700393826063 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6668e+04 |  512 |      1 | 3.072e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1305.9389934896064 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.32326231963733, dt = 0.011148700393826063 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (0.9%)
   patch tree reduce : 661.00 ns  (0.2%)
   gen split merge   : 591.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 511.00 ns  (0.1%)
   LB compute        : 374.43 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.383983664171248e-17,-5.537660174165238e-17,8.782037597132586e-21)
    sum a = (4.058179573634968e-17,7.840017697546831e-17,-2.5403507422638858e-17)
    sum e = 2.5920014458368605
    sum de = 2.1412992906588713e-18
Info: CFL hydro = 0.01115632172751541 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01115632172751541 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4811e+04 |  512 |      1 | 3.457e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1161.038745080742 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.334411020031155, dt = 0.01115632172751541 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.92 us    (0.9%)
   patch tree reduce : 1002.00 ns (0.2%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.2%)
   LB compute        : 399.36 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.457853407501295e-17,-5.395171614151761e-17,-1.0392077823273559e-18)
    sum a = (-1.2156974645710638e-16,7.10701029277283e-17,-8.745153039224629e-17)
    sum e = 2.5920014474211808
    sum de = 1.8634724839594607e-18
Info: CFL hydro = 0.011161006708384451 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011161006708384451 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6238e+04 |  512 |      1 | 3.153e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1273.7509849898777 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.34556734175867, dt = 0.011161006708384451 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.24 us    (1.0%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 378.61 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.229739980915776e-17,-5.323817558675059e-17,-2.2511289707316527e-18)
    sum a = (7.453022574099854e-17,6.441624577496752e-17,-7.283236513888624e-17)
    sum e = 2.592001448853809
    sum de = 4.0657581468206416e-19
Info: CFL hydro = 0.011165848956594625 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011165848956594625 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5942e+04 |  512 |      1 | 3.212e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1251.0694096931643 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.356728348467055, dt = 0.011165848956594625 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.60 us    (0.9%)
   patch tree reduce : 791.00 ns  (0.2%)
   gen split merge   : 611.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 368.59 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.81 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4120221487912593e-17,-5.251951217671857e-17,-3.0854225424592483e-18)
    sum a = (-1.052439385640369e-16,-2.186727361686014e-17,7.407355978594765e-17)
    sum e = 2.592001450103683
    sum de = -7.386127300057499e-19
Info: CFL hydro = 0.011170771815480172 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011170771815480172 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6457e+04 |  512 |      1 | 3.111e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1292.0679681296342 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.36789419742365, dt = 0.011170771815480172 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.21 us    (1.0%)
   patch tree reduce : 1222.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 396.77 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.214408006944116e-17,-5.3383811043569703e-17,-1.3729252110183943e-18)
    sum a = (-1.5147258447534284e-16,7.722338393745254e-17,3.9211797871197e-17)
    sum e = 2.592001451117909
    sum de = 5.421010862427522e-20
Info: CFL hydro = 0.01117569872931264 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01117569872931264 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6389e+04 |  512 |      1 | 3.124e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1287.2960937119783 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.379064969239128, dt = 0.01117569872931264 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.06 us    (1.0%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1011.00 ns (0.3%)
   LB compute        : 381.68 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.007956939764857e-17,-5.1914283418982853e-17,-1.124100812432971e-18)
    sum a = (8.190713732258991e-18,9.560711597411675e-18,-4.689608076868801e-18)
    sum e = 2.5920014518562544
    sum de = 1.5720931501039814e-18
Info: CFL hydro = 0.011180554041923717 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011180554041923717 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6693e+04 |  512 |      1 | 3.067e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1311.7434264269127 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.390240667968442, dt = 0.011180554041923717 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.79 us    (1.0%)
   patch tree reduce : 881.00 ns  (0.2%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 751.00 ns  (0.2%)
   LB compute        : 364.54 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.106974413672527e-17,-5.2433155473680104e-17,-1.3612158275555508e-18)
    sum a = (-1.0139155140476142e-16,3.586291420082377e-17,-2.319628863989287e-17)
    sum e = 2.5920014522970964
    sum de = 5.692061405548898e-19
Info: CFL hydro = 0.011180366191616038 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011180366191616038 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6034e+04 |  512 |      1 | 3.193e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1260.4616625734395 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.401421222010367, dt = 0.011180366191616038 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.20 us    (1.0%)
   patch tree reduce : 1482.00 ns (0.4%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 407.54 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.929796805150377e-17,-5.1404925238349166e-17,-1.6422410306637936e-18)
    sum a = (-6.129276773625403e-17,8.149145420965897e-17,1.5457849843886206e-17)
    sum e = 2.5920014523795674
    sum de = 2.710505431213761e-19
Info: CFL hydro = 0.011177641546571363 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011177641546571363 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6248e+04 |  512 |      1 | 3.151e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1277.2746239256703 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.412601588201984, dt = 0.011177641546571363 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.00 us    (1.0%)
   patch tree reduce : 1363.00 ns (0.3%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 393.13 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.886179351751285e-17,-5.0600636961745106e-17,-1.2031391508071642e-18)
    sum a = (-2.2095606594385585e-17,2.9806235604667995e-17,-7.262159623655507e-17)
    sum e = 2.5920014521511563
    sum de = -1.2400562347802957e-18
Info: CFL hydro = 0.011174815927289621 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011174815927289621 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6282e+04 |  512 |      1 | 3.145e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1279.6465120305538 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.423779229748554, dt = 0.011174815927289621 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.1%)
   patch tree reduce : 1062.00 ns (0.2%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 682.00 ns  (0.2%)
   LB compute        : 411.11 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.887496657390855e-17,-5.0401577442876766e-17,-2.502880715182787e-18)
    sum a = (-2.7326188187237756e-16,8.270923008979469e-17,1.7408633128795925e-16)
    sum e = 2.592001451676621
    sum de = 3.1848438816761693e-19
Info: CFL hydro = 0.01117193150292257 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01117193150292257 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5851e+04 |  512 |      1 | 3.230e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1245.4577762191798 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.434954045675845, dt = 0.01117193150292257 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.41 us    (1.1%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 682.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 377.03 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.449638899527153e-17,-4.9120131790161835e-17,7.611099250848241e-19)
    sum a = (-2.176774385742597e-17,8.721734272298942e-17,4.922624807779385e-17)
    sum e = 2.592001451009995
    sum de = -1.0164395367051604e-19
Info: CFL hydro = 0.011169035714247861 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011169035714247861 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6805e+04 |  512 |      1 | 3.047e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1320.0900786518202 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.446125977178767, dt = 0.011169035714247861 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.44 us    (1.2%)
   patch tree reduce : 1052.00 ns (0.3%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 367.78 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.554950167046101e-17,-4.833999411694989e-17,6.410887445906788e-19)
    sum a = (1.9297063946766003e-17,-5.948366799124471e-17,5.5402947854443775e-17)
    sum e = 2.5920014502180604
    sum de = 3.7269449679189215e-20
Info: CFL hydro = 0.011166179551964632 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011166179551964632 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6964e+04 |  512 |      1 | 3.018e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1332.228257031863 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.457295012893013, dt = 0.011166179551964632 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.95 us    (0.9%)
   patch tree reduce : 822.00 ns  (0.2%)
   gen split merge   : 641.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.2%)
   LB compute        : 414.73 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.71 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6086669636818956e-17,-4.9619976096731966e-17,1.4695276245868527e-18)
    sum a = (-1.0559522006792221e-16,-7.45185163575357e-17,-2.7962007709270153e-17)
    sum e = 2.592001449374871
    sum de = 5.251604272976662e-19
Info: CFL hydro = 0.011163417245499789 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011163417245499789 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5594e+04 |  512 |      1 | 3.283e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1224.3207361702653 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.468461192444977, dt = 0.011163417245499789 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.83 us    (1.0%)
   patch tree reduce : 962.00 ns  (0.2%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 377.98 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4119493215061256e-17,-5.070455773997784e-17,5.825418272764616e-19)
    sum a = (-8.465884243635813e-18,9.443032293610099e-17,-1.1890293437344378e-16)
    sum e = 2.5920014485587117
    sum de = -1.026603932072212e-18
Info: CFL hydro = 0.011160805326886255 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011160805326886255 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6282e+04 |  512 |      1 | 3.145e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1278.0412420503203 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.479624609690475, dt = 0.011160805326886255 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.28 us    (1.1%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1013.00 ns (0.3%)
   LB compute        : 382.59 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4599577937037837e-17,-4.898474204387271e-17,-1.2851048350470684e-18)
    sum a = (2.1279462567025398e-16,-1.1096982707736735e-16,4.5842236257032095e-18)
    sum e = 2.5920014478425184
    sum de = -8.605854744103691e-19
Info: CFL hydro = 0.011158401306681257 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011158401306681257 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4823e+04 |  512 |      1 | 3.454e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1163.2635020300927 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.49078541501736, dt = 0.009214584982640162 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (0.7%)
   patch tree reduce : 1783.00 ns (0.3%)
   gen split merge   : 611.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.1%)
   LB compute        : 668.99 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7720128629885614e-17,-5.106023026266171e-17,-4.0982842119952065e-19)
    sum a = (7.866363810338228e-17,-9.742207041085748e-17,-1.4910143432411705e-16)
    sum e = 2.592001428707096
    sum de = -7.233661369551725e-19
Info: CFL hydro = 0.01115665383692232 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01115665383692232 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2755e+04 |  512 |      1 | 4.014e-02 | 0.0% |   1.2% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 826.3975105591792 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1841                                                    [SPH][rank=0]
Info: time since start : 793.644941385 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.1499178871573435 max=0.15009580584251686 delta=0.00017791868517336162
Number of particle pairs: 130816
Distance min=0.129609 max=1.973630 mean=0.800369
---------------- t = 16.5, dt = 0.01115665383692232 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.84 us    (1.4%)
   patch tree reduce : 1734.00 ns (0.2%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.1%)
   LB compute        : 685.36 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.57 us    (74.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.817972193080222e-17,-5.1945752387039247e-17,-2.7839059182910297e-18)
    sum a = (1.2732783577495966e-16,6.605263211389988e-17,-7.170826432645327e-17)
    sum e = 2.5920014468545585
    sum de = -7.796938279475835e-19
Info: CFL hydro = 0.011154735788309398 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011154735788309398 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4145e+04 |  512 |      1 | 3.620e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1109.609167677525 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.511156653836924, dt = 0.011154735788309398 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.48 us    (1.0%)
   patch tree reduce : 832.00 ns  (0.2%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 417.80 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 2.73 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9800007867473185e-17,-5.0303511356375454e-17,-3.2932640989247197e-18)
    sum a = (6.378101172210826e-17,-7.972919199850103e-17,-1.5473950246147617e-17)
    sum e = 2.5920014468134753
    sum de = -1.1833050273142576e-18
Info: CFL hydro = 0.011153226322083114 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011153226322083114 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5942e+04 |  512 |      1 | 3.212e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1250.3933871596407 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.522311389625234, dt = 0.011153226322083114 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.01 us    (0.9%)
   patch tree reduce : 1092.00 ns (0.3%)
   gen split merge   : 591.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 412.39 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.89 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (73.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0164462427754185e-17,-5.1770111635096594e-17,-3.3459563245075153e-18)
    sum a = (1.2525527490203637e-16,-1.5795958291375812e-17,1.5874411160576862e-16)
    sum e = 2.592001447002905
    sum de = -6.827085554869661e-19
Info: CFL hydro = 0.011152136018539897 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011152136018539897 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5894e+04 |  512 |      1 | 3.221e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1246.4249301626305 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.533464615947317, dt = 0.011152136018539897 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.57 us    (0.9%)
   patch tree reduce : 581.00 ns  (0.1%)
   gen split merge   : 591.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.2%)
   LB compute        : 391.39 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.57 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1945752387039247e-17,-5.1609107612482496e-17,-5.386316392907986e-19)
    sum a = (7.217663966496701e-17,-5.3775343553108535e-17,-1.908629504443482e-17)
    sum e = 2.5920014474928292
    sum de = 3.1848438816761693e-19
Info: CFL hydro = 0.011151512990926291 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011151512990926291 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6113e+04 |  512 |      1 | 3.178e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1263.4900164774128 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.544616751965858, dt = 0.011151512990926291 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (0.9%)
   patch tree reduce : 701.00 ns  (0.2%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 601.00 ns  (0.1%)
   LB compute        : 389.52 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.77 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.259123215042849e-17,-5.2292642872125984e-17,-1.6685871434551914e-18)
    sum a = (-3.0912772341906703e-18,-1.1759148342560532e-16,-1.4690007023310247e-16)
    sum e = 2.592001448267821
    sum de = -3.1509625637859973e-19
Info: CFL hydro = 0.011151400637748051 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011151400637748051 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5898e+04 |  512 |      1 | 3.221e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1246.5459314642 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 16.555768264956786, dt = 0.011151400637748051 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.80 us    (1.0%)
   patch tree reduce : 590.00 ns  (0.2%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 371.14 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.52 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.207894662392909e-17,-5.405197773741821e-17,-4.0953568661294955e-18)
    sum a = (-5.433739395932502e-17,-9.399414840211007e-17,-3.033901255222737e-17)
    sum e = 2.5920014492959216
    sum de = -5.658180087658726e-19
Info: CFL hydro = 0.01115183671329227 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01115183671329227 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5906e+04 |  512 |      1 | 3.219e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1247.1362741805933 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.566919665594533, dt = 0.01115183671329227 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (1.0%)
   patch tree reduce : 1052.00 ns (0.2%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 409.62 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 2.90 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0888980529517624e-17,-5.5449785388295144e-17,-3.714801903587084e-18)
    sum a = (2.0110866097433623e-17,-4.4220486647428283e-17,1.494644252114652e-16)
    sum e = 2.592001450528184
    sum de = 3.2526065174565133e-19
Info: CFL hydro = 0.01115285275210865 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01115285275210865 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5782e+04 |  512 |      1 | 3.244e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1237.4520837647342 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.578071502307825, dt = 0.01115285275210865 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.67 us    (0.9%)
   patch tree reduce : 1092.00 ns (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 691.00 ns  (0.2%)
   LB compute        : 410.62 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.169692798845382e-17,-5.5423439275503747e-17,-9.57242098087452e-19)
    sum a = (-8.105235232980235e-17,-5.790875591549228e-17,3.7534428690144674e-17)
    sum e = 2.5920014519019294
    sum de = -1.6263032587282567e-19
Info: CFL hydro = 0.011154473206568665 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011154473206568665 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2491e+04 |  512 |      1 | 4.099e-02 | 0.0% |   1.2% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 979.5444894427926 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.589224355059933, dt = 0.011154473206568665 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.15 us    (0.2%)
   patch tree reduce : 1222.00 ns (0.1%)
   gen split merge   : 682.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.0%)
   LB compute        : 2.28 ms    (99.3%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.037376765715251e-17,-5.61377116667372e-17,-1.0655538951187537e-18)
    sum a = (-7.714727294494406e-17,-8.336788290957964e-17,9.482258728210624e-17)
    sum e = 2.592001453345257
    sum de = -6.640738306473715e-19
Info: CFL hydro = 0.011156715111605653 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011156715111605653 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5299e+04 |  512 |      1 | 3.347e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1199.8818749772443 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.600378828266503, dt = 0.011156715111605653 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.60 us    (0.9%)
   patch tree reduce : 1373.00 ns (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 369.90 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9062316709314045e-17,-5.732621408821581e-17,3.9519169187096637e-19)
    sum a = (-5.254585828950997e-17,-1.2330858990133863e-16,1.2941210603134578e-16)
    sum e = 2.592001454780305
    sum de = 1.7618285302889447e-19
Info: CFL hydro = 0.011159247793567547 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011159247793567547 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5998e+04 |  512 |      1 | 3.200e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1255.00643973181 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 16.61153554337811, dt = 0.011159247793567547 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.65 us    (0.9%)
   patch tree reduce : 882.00 ns  (0.2%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 682.00 ns  (0.2%)
   LB compute        : 387.26 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8977423679208434e-17,-5.897870082940959e-17,1.891065429249217e-18)
    sum a = (-9.433957521426395e-17,-1.4191772756966257e-17,-7.916714159228455e-17)
    sum e = 2.592001456126356
    sum de = 4.675621868843738e-19
Info: CFL hydro = 0.011162106961376228 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011162106961376228 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6164e+04 |  512 |      1 | 3.168e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1268.275652256617 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.62269479117168, dt = 0.011162106961376228 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.56 us    (0.9%)
   patch tree reduce : 771.00 ns  (0.2%)
   gen split merge   : 591.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.2%)
   LB compute        : 389.30 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.77 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.741129364105312e-17,-5.833614841188606e-17,-7.025630077706069e-20)
    sum a = (2.3200972393278006e-16,1.0756825118141133e-16,6.541447071517492e-17)
    sum e = 2.592001457312343
    sum de = 7.386127300057499e-19
Info: CFL hydro = 0.011165569080306588 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011165569080306588 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5781e+04 |  512 |      1 | 3.244e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1238.5152082587852 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.633856898133054, dt = 0.011165569080306588 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (0.8%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 762.00 ns  (0.2%)
   LB compute        : 362.23 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.52 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.201893603368202e-17,-5.58288766779047e-17,1.4900190456468288e-18)
    sum a = (-8.834876190008667e-17,-3.077518708621829e-17,-1.0354022327019318e-17)
    sum e = 2.592001458280728
    sum de = 1.3349239248727773e-18
Info: CFL hydro = 0.01116962783546379 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01116962783546379 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6134e+04 |  512 |      1 | 3.173e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1266.6356391026711 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.645022467213362, dt = 0.01116962783546379 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.40 us    (0.9%)
   patch tree reduce : 721.00 ns  (0.2%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 731.00 ns  (0.2%)
   LB compute        : 386.03 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.71 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.900962448373125e-17,-5.749892749429275e-17,9.98224940207404e-19)
    sum a = (-9.296665000324556e-17,5.4441314737557755e-17,3.0693221401978385e-17)
    sum e = 2.5920014589853517
    sum de = 6.505213034913027e-19
Info: CFL hydro = 0.011174268757897194 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011174268757897194 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6093e+04 |  512 |      1 | 3.181e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1263.9142687187748 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.656192095048826, dt = 0.011174268757897194 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 us    (0.8%)
   patch tree reduce : 751.00 ns  (0.2%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 702.00 ns  (0.2%)
   LB compute        : 393.40 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.828364270903496e-17,-5.670122574588654e-17,1.4256174366011897e-18)
    sum a = (7.214151151457849e-17,-8.137436037503053e-17,-2.0355299477220478e-16)
    sum e = 2.5920014593978324
    sum de = 9.690056916589196e-19
Info: CFL hydro = 0.011175750595460556 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011175750595460556 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6185e+04 |  512 |      1 | 3.163e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1271.6137521060175 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.667366363806725, dt = 0.011175750595460556 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (0.8%)
   patch tree reduce : 671.00 ns  (0.2%)
   gen split merge   : 591.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 541.00 ns  (0.1%)
   LB compute        : 381.27 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.39 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9542401431290626e-17,-5.791168326135798e-17,-1.9993772262805186e-18)
    sum a = (1.398246752756793e-17,1.3369188568701506e-17,1.242980328039489e-16)
    sum e = 2.5920014594651235
    sum de = -1.3552527156068805e-20
Info: CFL hydro = 0.011175818161284446 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011175818161284446 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6010e+04 |  512 |      1 | 3.198e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1258.0587004491058 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.678542114402184, dt = 0.011175818161284446 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.42 us    (0.9%)
   patch tree reduce : 742.00 ns  (0.2%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 661.00 ns  (0.2%)
   LB compute        : 360.67 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.962729446139624e-17,-5.748575443789705e-17,1.0743359327158864e-18)
    sum a = (5.099582865361607e-17,-1.211745547652354e-16,5.531512747847245e-17)
    sum e = 2.592001459221781
    sum de = -5.963111948670274e-19
Info: CFL hydro = 0.011176638571162275 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011176638571162275 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5782e+04 |  512 |      1 | 3.244e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1240.1687030173382 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.689717932563468, dt = 0.011176638571162275 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (1.1%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1313.00 ns (0.3%)
   LB compute        : 376.11 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.041767784513818e-17,-5.963881732212739e-17,1.4080533614069246e-18)
    sum a = (-1.5175360967845107e-17,2.0298216232839116e-17,7.634518017773928e-17)
    sum e = 2.5920014587273106
    sum de = -5.21772295508649e-19
Info: CFL hydro = 0.01117242632456016 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01117242632456016 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6209e+04 |  512 |      1 | 3.159e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1273.7879405632573 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.70089457113463, dt = 0.01117242632456016 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.38 us    (1.1%)
   patch tree reduce : 1803.00 ns (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 375.95 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9879046205847377e-17,-5.865230176538283e-17,2.2716203917916287e-18)
    sum a = (-4.7701100881758493e-17,-8.106845273206376e-17,1.5475706653667044e-16)
    sum e = 2.592001457968764
    sum de = -1.3078188705606397e-18
Info: CFL hydro = 0.011165731796209699 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011165731796209699 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6537e+04 |  512 |      1 | 3.096e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1299.0545132168493 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.71206699745919, dt = 0.011165731796209699 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.53 us    (0.9%)
   patch tree reduce : 1022.00 ns (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 380.27 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8997915100268406e-17,-6.005303676212547e-17,4.6252064678231615e-18)
    sum a = (-4.587736440742063e-17,-6.73362732760141e-17,-5.978811196127864e-17)
    sum e = 2.592001457041599
    sum de = 2.303929616531697e-19
Info: CFL hydro = 0.011159786044039263 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011159786044039263 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6140e+04 |  512 |      1 | 3.172e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1267.1089225950368 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.7232327292554, dt = 0.011159786044039263 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.47 us    (0.9%)
   patch tree reduce : 861.00 ns  (0.2%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 381.52 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.81 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8457819788044754e-17,-6.06765614315219e-17,2.8043973393510057e-18)
    sum a = (4.9507273280902094e-17,5.1350037503367084e-17,8.173149657064727e-17)
    sum e = 2.592001456056407
    sum de = 1.1248597539537109e-18
Info: CFL hydro = 0.011154673139855168 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011154673139855168 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6713e+04 |  512 |      1 | 3.063e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1311.442304035124 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.73439251529944, dt = 0.011154673139855168 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (0.8%)
   patch tree reduce : 862.00 ns  (0.2%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 375.05 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.42 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9644858536590505e-17,-5.966369976198593e-17,4.423219603089112e-18)
    sum a = (-7.86694927951137e-17,-1.2505621538316802e-17,-1.3536047283047026e-17)
    sum e = 2.5920014550928094
    sum de = 1.3145951341386741e-18
Info: CFL hydro = 0.011150465391807352 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011150465391807352 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6541e+04 |  512 |      1 | 3.095e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1297.2932304746075 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.745547188439296, dt = 0.011150465391807352 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (0.8%)
   patch tree reduce : 671.00 ns  (0.2%)
   gen split merge   : 571.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 712.00 ns  (0.2%)
   LB compute        : 381.70 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.33 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.811092930295802e-17,-6.03838268449508e-17,3.7030925201242405e-18)
    sum a = (1.0784927638451958e-16,1.6855657494763144e-17,-5.1088040048385964e-17)
    sum e = 2.5920014542281735
    sum de = 1.7974039140736253e-18
Info: CFL hydro = 0.01114722162027068 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01114722162027068 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6667e+04 |  512 |      1 | 3.072e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1306.758799533547 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.756697653831104, dt = 0.01114722162027068 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 us    (0.9%)
   patch tree reduce : 892.00 ns  (0.2%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 361.29 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.52 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.033863950676398e-17,-5.966955445371736e-17,2.991747474756501e-18)
    sum a = (-1.546985196193562e-16,6.496951414358686e-17,-6.227050125540145e-17)
    sum e = 2.5920014535345253
    sum de = -2.1175823681357508e-19
Info: CFL hydro = 0.011144986632433468 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011144986632433468 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6407e+04 |  512 |      1 | 3.121e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1285.9997127081758 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.767844875451374, dt = 0.011144986632433468 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (0.8%)
   patch tree reduce : 942.00 ns  (0.2%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 632.00 ns  (0.2%)
   LB compute        : 386.51 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.67 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7133195783810586e-17,-5.892454493089393e-17,2.1545265571631944e-18)
    sum a = (6.783831309198351e-17,-1.3710809831229963e-16,-7.400330348517058e-17)
    sum e = 2.5920014530715525
    sum de = -1.3552527156068805e-19
Info: CFL hydro = 0.011142506159317098 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011142506159317098 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6181e+04 |  512 |      1 | 3.164e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1268.0245207565226 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.778989862083808, dt = 0.011142506159317098 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.74 us    (0.9%)
   patch tree reduce : 1233.00 ns (0.3%)
   gen split merge   : 702.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 751.00 ns  (0.2%)
   LB compute        : 390.61 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.912818199129254e-17,-6.181090795448485e-17,1.334869714764153e-18)
    sum a = (-1.6469247840489308e-17,6.399178062443945e-17,4.961265773206769e-17)
    sum e = 2.5920014528705666
    sum de = 6.513418666589553e-19
Info: CFL hydro = 0.011133450110389123 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011133450110389123 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6557e+04 |  512 |      1 | 3.092e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1297.151164044552 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.790132368243125, dt = 0.011133450110389123 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (0.8%)
   patch tree reduce : 711.00 ns  (0.2%)
   gen split merge   : 582.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 461.00 ns  (0.1%)
   LB compute        : 373.41 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.47 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8383172468469124e-17,-5.94778132995133e-17,2.5614276324970042e-18)
    sum a = (1.7850955089104837e-16,9.902332859940132e-17,5.983494949513002e-18)
    sum e = 2.5920014528957864
    sum de = -9.918755812347857e-19
Info: CFL hydro = 0.011126523580852992 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011126523580852992 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6183e+04 |  512 |      1 | 3.164e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1266.8631737137512 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.801265818353514, dt = 0.011126523580852992 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.51 us    (1.1%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 378.75 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.141297543947987e-17,-5.853667160368725e-17,2.400423609882907e-18)
    sum a = (-1.152671708082309e-16,-6.460652325623872e-18,-6.298477364663491e-17)
    sum e = 2.592001453238161
    sum de = 9.893344823930228e-19
Info: CFL hydro = 0.011121827567674452 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011121827567674452 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6443e+04 |  512 |      1 | 3.114e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1286.3769589334793 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.812392341934366, dt = 0.011121827567674452 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.75 us    (1.0%)
   patch tree reduce : 1113.00 ns (0.3%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.2%)
   LB compute        : 371.07 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 2.85 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.852222139709039e-17,-5.908408528057518e-17,1.3846345944812376e-18)
    sum a = (-3.238815465822498e-17,8.372209175933065e-19,4.706001213716782e-17)
    sum e = 2.5920014538848806
    sum de = -5.844527336054672e-19
Info: CFL hydro = 0.011119430955819373 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011119430955819373 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6595e+04 |  512 |      1 | 3.085e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1297.7155229374018 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.82351416950204, dt = 0.011119430955819373 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.90 us    (1.0%)
   patch tree reduce : 1192.00 ns (0.3%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 571.00 ns  (0.1%)
   LB compute        : 366.88 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8639315231718825e-17,-5.898601919407386e-17,2.2774750835230506e-18)
    sum a = (3.3576657079703587e-17,6.728211737749845e-17,-1.66495723458171e-16)
    sum e = 2.5920014548062347
    sum de = -1.917682592583736e-18
Info: CFL hydro = 0.01111936921026358 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01111936921026358 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5844e+04 |  512 |      1 | 3.231e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1238.748094867787 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.83463360045786, dt = 0.01111936921026358 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.54 us    (0.6%)
   patch tree reduce : 751.00 ns  (0.1%)
   gen split merge   : 792.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 471.00 ns  (0.1%)
   LB compute        : 589.61 us  (97.9%)
   LB move op cnt    : 0
   LB apply          : 2.64 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9467754111715e-17,-5.811952481782345e-17,-5.327769475593768e-19)
    sum a = (9.207088216833803e-17,5.5044347985894194e-17,-1.3301859613790157e-17)
    sum e = 2.5920014559569333
    sum de = 3.7608262858090935e-19
Info: CFL hydro = 0.011121644282479103 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011121644282479103 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6010e+04 |  512 |      1 | 3.198e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1251.6839580418466 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.845752969668123, dt = 0.011121644282479103 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.42 us    (0.8%)
   patch tree reduce : 882.00 ns  (0.2%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 701.00 ns  (0.2%)
   LB compute        : 408.66 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.95 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.075724996556064e-17,-5.728669491902871e-17,7.025630077706069e-20)
    sum a = (-1.5379104240098584e-16,7.840164064840115e-17,-1.0008010045692295e-16)
    sum e = 2.592001457278306
    sum de = -4.607859233063394e-19
Info: CFL hydro = 0.011126224292949302 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011126224292949302 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6147e+04 |  512 |      1 | 3.171e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1262.7063485584536 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.856874613950602, dt = 0.011126224292949302 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.52 us    (0.9%)
   patch tree reduce : 782.00 ns  (0.2%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 751.00 ns  (0.2%)
   LB compute        : 397.50 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.63 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7595716430592904e-17,-5.645825603903254e-17,-1.4314721283326114e-18)
    sum a = (6.235246693964136e-17,-2.1900938094315813e-17,-7.94774402540499e-17)
    sum e = 2.592001458705536
    sum de = -2.4326786245143506e-18
Info: CFL hydro = 0.011132841300921889 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011132841300921889 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6699e+04 |  512 |      1 | 3.066e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1306.363503268256 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.86800083824355, dt = 0.011132841300921889 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.50 us    (0.9%)
   patch tree reduce : 951.00 ns  (0.2%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 393.88 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.81 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.946482676584929e-17,-5.73759789679329e-17,-2.37700484295722e-18)
    sum a = (3.2716017395184594e-17,-3.101962046600515e-17,4.3494504872731987e-17)
    sum e = 2.5920014601669514
    sum de = -4.0657581468206416e-19
Info: CFL hydro = 0.011140190824980743 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011140190824980743 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6258e+04 |  512 |      1 | 3.149e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1272.6087340545778 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.87913367954447, dt = 0.011140190824980743 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.46 us    (0.9%)
   patch tree reduce : 1292.00 ns (0.3%)
   gen split merge   : 622.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 501.00 ns  (0.1%)
   LB compute        : 358.14 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.41 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.985562743892169e-17,-5.726034880623732e-17,-1.0772632785815972e-18)
    sum a = (-2.727115408496239e-17,4.070035324391097e-17,3.0590764296678505e-17)
    sum e = 2.592001461580836
    sum de = -1.2807138162485021e-18
Info: CFL hydro = 0.011138959619499782 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011138959619499782 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6211e+04 |  512 |      1 | 3.158e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1269.8284836334494 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.89027387036945, dt = 0.011138959619499782 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (0.8%)
   patch tree reduce : 621.00 ns  (0.2%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 582.00 ns  (0.2%)
   LB compute        : 367.88 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.41 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.40 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.918746074507318e-17,-5.663828780977375e-17,-8.89913143176102e-19)
    sum a = (5.035034889022682e-18,-9.955903289282641e-18,-6.635414873806811e-17)
    sum e = 2.5920014627826906
    sum de = 9.385125055577648e-19
Info: CFL hydro = 0.011138060933185312 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011138060933185312 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6571e+04 |  512 |      1 | 3.090e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1297.820737535489 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.901412829988953, dt = 0.011138060933185312 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (0.8%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 590.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 471.00 ns  (0.1%)
   LB compute        : 386.73 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.55 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.927601295751094e-17,-5.715496435507173e-17,-2.0959796398489773e-18)
    sum a = (-1.1196512467170904e-16,4.975317033362181e-17,2.7938588942344465e-17)
    sum e = 2.592001463810578
    sum de = 8.131516293641283e-20
Info: CFL hydro = 0.011137471250213037 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011137471250213037 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6295e+04 |  512 |      1 | 3.142e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1276.127976808616 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.912550890922137, dt = 0.011137471250213037 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.69 us    (0.9%)
   patch tree reduce : 1012.00 ns (0.2%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 692.00 ns  (0.2%)
   LB compute        : 393.38 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7432516898579525e-17,-5.623138673443995e-17,-1.5339292336324916e-18)
    sum a = (-1.2256211670558236e-16,-1.6550628055556072e-16,-9.153078685611438e-18)
    sum e = 2.5920014646263363
    sum de = -1.2468324983583301e-18
Info: CFL hydro = 0.011137163702666318 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011137163702666318 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6032e+04 |  512 |      1 | 3.194e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1255.5045774843386 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.92368836217235, dt = 0.011137163702666318 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 us    (0.8%)
   patch tree reduce : 671.00 ns  (0.2%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 400.00 ns  (0.1%)
   LB compute        : 390.00 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.31 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5932252142402704e-17,-5.920996115280075e-17,-1.797390361546469e-18)
    sum a = (-8.273850354845181e-17,8.351425020286518e-17,1.6419775695358795e-16)
    sum e = 2.5920014652072845
    sum de = 4.675621868843738e-19
Info: CFL hydro = 0.011137108178060363 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011137108178060363 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6562e+04 |  512 |      1 | 3.091e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1296.946525618071 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.934825525875016, dt = 0.011137108178060363 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 us    (0.9%)
   patch tree reduce : 571.00 ns  (0.2%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 571.00 ns  (0.2%)
   LB compute        : 359.93 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.63 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.520114751244142e-17,-5.676562735493218e-17,8.196568423990413e-19)
    sum a = (-1.562031753943316e-17,1.027615492699141e-16,6.54613082490263e-17)
    sum e = 2.5920014655462045
    sum de = 1.2400562347802957e-18
Info: CFL hydro = 0.011137271583804596 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011137271583804596 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6448e+04 |  512 |      1 | 3.113e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1287.980231739786 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.94596263405308, dt = 0.011137271583804596 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.40 us    (0.8%)
   patch tree reduce : 881.00 ns  (0.2%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 691.00 ns  (0.2%)
   LB compute        : 393.55 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 2.77 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.552096004827033e-17,-5.539270214391378e-17,1.0421351281930669e-18)
    sum a = (2.408912912893468e-16,2.9103672596897386e-17,-4.439027270763951e-17)
    sum e = 2.5920014656527774
    sum de = -2.0769247866675444e-18
Info: CFL hydro = 0.011137618293219763 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011137618293219763 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6195e+04 |  512 |      1 | 3.161e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1268.2434192156827 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.957099905636884, dt = 0.011137618293219763 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 21.14 us   (5.3%)
   patch tree reduce : 681.00 ns  (0.2%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 510.00 ns  (0.1%)
   LB compute        : 372.67 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 2.33 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9640467517791944e-17,-5.575276568539622e-17,1.1123914289701276e-19)
    sum a = (-9.916091385508973e-17,-1.4992109116651609e-16,7.8909535156102e-17)
    sum e = 2.5920014655553922
    sum de = 2.4665599424045226e-18
Info: CFL hydro = 0.011138110551964463 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011138110551964463 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6520e+04 |  512 |      1 | 3.099e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1293.7320294508665 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.968237523930103, dt = 0.011138110551964463 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (0.8%)
   patch tree reduce : 491.00 ns  (0.1%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 441.00 ns  (0.1%)
   LB compute        : 363.23 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.13 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6658233917099e-17,-5.824247334418331e-17,1.6012581885438415e-18)
    sum a = (2.97271972662938e-18,9.941266559954087e-18,-1.2038417138149348e-16)
    sum e = 2.5920014652938956
    sum de = 6.369687763352339e-19
Info: CFL hydro = 0.01113870886577335 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01113870886577335 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5862e+04 |  512 |      1 | 3.228e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1242.1959006427887 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.979375634482068, dt = 0.01113870886577335 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (0.9%)
   patch tree reduce : 491.00 ns  (0.1%)
   gen split merge   : 611.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 631.00 ns  (0.2%)
   LB compute        : 361.25 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.20 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7191742701124805e-17,-5.730572266715584e-17,-8.020927672047761e-19)
    sum a = (-1.4166890317107715e-17,-1.430828112242155e-16,-7.15560423414363e-17)
    sum e = 2.59200146491812
    sum de = 7.657177843178875e-19
Info: CFL hydro = 0.011139372774092495 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011139372774092495 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6607e+04 |  512 |      1 | 3.083e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1300.672283827499 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.99051434334784, dt = 0.009485656652159946 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.40 us    (0.9%)
   patch tree reduce : 682.00 ns  (0.2%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 501.00 ns  (0.1%)
   LB compute        : 357.46 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.31 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6953895849535795e-17,-5.949830472057327e-17,-1.2031391508071642e-18)
    sum a = (-1.5055339787350962e-17,7.838846759200546e-17,-5.972956504396443e-17)
    sum e = 2.592001448330276
    sum de = -1.8973538018496328e-19
Info: CFL hydro = 0.011139893049325732 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011139893049325732 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7581e+04 |  512 |      1 | 2.912e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1172.576424150305 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1886                                                    [SPH][rank=0]
Info: time since start : 796.001010188 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14991661511751575 max=0.1500934193675787 delta=0.0001768042500629452
Number of particle pairs: 130816
Distance min=0.128141 max=1.974197 mean=0.800456
---------------- t = 17, dt = 0.011139893049325732 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.52 us   (1.6%)
   patch tree reduce : 1663.00 ns (0.2%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.2%)
   LB compute        : 644.88 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 4.98 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (82.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6750445311868894e-17,-5.732621408821581e-17,-1.8735013540549518e-18)
    sum a = (5.185500466520221e-17,-5.872841275789131e-17,2.8336707980081143e-18)
    sum e = 2.5920014639811813
    sum de = -5.30242624981192e-19
Info: CFL hydro = 0.011139419920689432 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011139419920689432 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3332e+04 |  512 |      1 | 3.840e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.2941571767537 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.011139893049325, dt = 0.011139419920689432 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.74 us    (0.9%)
   patch tree reduce : 751.00 ns  (0.2%)
   gen split merge   : 621.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 404.58 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 2.79 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7819658389319784e-17,-5.874597683308558e-17,-1.4461088576611657e-18)
    sum a = (-1.2858439898781603e-16,-6.111127229257996e-17,7.44365506732958e-17)
    sum e = 2.5920014636118673
    sum de = 6.776263578034403e-20
Info: CFL hydro = 0.011138951923244137 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011138951923244137 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6407e+04 |  512 |      1 | 3.121e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1285.0609180999525 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.022279312970014, dt = 0.011138951923244137 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.70 us    (0.9%)
   patch tree reduce : 752.00 ns  (0.2%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 651.00 ns  (0.2%)
   LB compute        : 382.50 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.67 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5526814740001754e-17,-5.953636021682751e-17,-1.4929463915125396e-19)
    sum a = (-3.650400294541445e-17,4.320762497789232e-17,-8.47056799702095e-17)
    sum e = 2.592001463288581
    sum de = -4.0318768289304696e-19
Info: CFL hydro = 0.011138462436559608 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011138462436559608 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6602e+04 |  512 |      1 | 3.084e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1300.3093461776436 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.033418264893257, dt = 0.011138462436559608 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.67 us    (0.7%)
   patch tree reduce : 741.00 ns  (0.1%)
   gen split merge   : 651.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 701.00 ns  (0.1%)
   LB compute        : 511.63 us  (97.6%)
   LB move op cnt    : 0
   LB apply          : 2.83 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.54777816967511e-17,-5.856740873527721e-17,-2.1311077902375074e-18)
    sum a = (1.7574028170208588e-16,-8.577708855705968e-17,-2.7599016821922005e-17)
    sum e = 2.5920014630970547
    sum de = -1.2366681029912785e-18
Info: CFL hydro = 0.01113793125565893 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01113793125565893 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6672e+04 |  512 |      1 | 3.071e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1305.674106166394 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.044556727329816, dt = 0.01113793125565893 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.22 us    (0.8%)
   patch tree reduce : 571.00 ns  (0.1%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 581.00 ns  (0.1%)
   LB compute        : 383.45 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.50 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.872494009829087e-17,-6.016573957795535e-17,-1.908629504443482e-18)
    sum a = (9.409075081567852e-17,-3.69489595170025e-17,-2.157922278367419e-16)
    sum e = 2.5920014630597517
    sum de = 4.2351647362715017e-19
Info: CFL hydro = 0.011135028807285516 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011135028807285516 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7308e+04 |  512 |      1 | 2.958e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1355.4520841773685 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.055694658585473, dt = 0.011135028807285516 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (0.8%)
   patch tree reduce : 1002.00 ns (0.3%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 421.00 ns  (0.1%)
   LB compute        : 346.69 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 2.76 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9279672139843076e-17,-6.019794038247816e-17,-5.6351407914934094e-18)
    sum a = (-1.0234001146525173e-17,-8.179004348796148e-17,-1.0593479218834468e-16)
    sum e = 2.5920014631645905
    sum de = -2.210755992333724e-19
Info: CFL hydro = 0.011131392691053605 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011131392691053605 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6948e+04 |  512 |      1 | 3.021e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1326.9496198470267 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.066829687392758, dt = 0.011131392691053605 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.37 us    (0.9%)
   patch tree reduce : 1032.00 ns (0.3%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 370.49 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.62 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.85910140249346e-17,-6.160599374388509e-17,-6.056678596155773e-18)
    sum a = (-4.744642179144165e-17,3.3254649034475393e-18,1.2811236446697016e-16)
    sum e = 2.5920014634252113
    sum de = 2.117582368135751e-18
Info: CFL hydro = 0.01112819259372515 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01112819259372515 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7481e+04 |  512 |      1 | 2.929e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1368.1584101014248 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.07796108008381, dt = 0.01112819259372515 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.24 us    (0.8%)
   patch tree reduce : 571.00 ns  (0.1%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 461.00 ns  (0.1%)
   LB compute        : 374.65 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.47 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7890646526563276e-17,-6.095026826996586e-17,-3.331319595178961e-18)
    sum a = (-7.030606565677777e-17,-5.105876658972885e-17,-3.528037237354731e-17)
    sum e = 2.592001463836516
    sum de = -3.1340219048409113e-19
Info: CFL hydro = 0.011125484619821597 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011125484619821597 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7567e+04 |  512 |      1 | 2.915e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1374.5553263941304 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.089089272677533, dt = 0.011125484619821597 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.43 us    (0.9%)
   patch tree reduce : 561.00 ns  (0.2%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 541.00 ns  (0.1%)
   LB compute        : 350.65 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.52 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.706879417476495e-17,-6.178748918755916e-17,-4.6720440016745356e-18)
    sum a = (1.2383843950303231e-16,2.7253590009768125e-17,1.95663797664114e-17)
    sum e = 2.59200146437076
    sum de = -1.5077186461126546e-18
Info: CFL hydro = 0.01112332012700712 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01112332012700712 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7115e+04 |  512 |      1 | 2.992e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1338.8110201762815 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.100214757297355, dt = 0.01112332012700712 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.45 us    (0.9%)
   patch tree reduce : 571.00 ns  (0.1%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 621.00 ns  (0.2%)
   LB compute        : 375.46 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.68 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.925405786351811e-17,-6.097954172862297e-17,-4.1773225503694e-18)
    sum a = (-3.114696001116357e-17,-3.0491234537244335e-17,-2.903927098785175e-18)
    sum e = 2.5920014649911587
    sum de = 6.14945919706622e-19
Info: CFL hydro = 0.011121744947320161 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011121744947320161 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7294e+04 |  512 |      1 | 2.961e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1352.586003252426 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.111338077424364, dt = 0.011121744947320161 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (0.8%)
   patch tree reduce : 551.00 ns  (0.1%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 441.00 ns  (0.1%)
   LB compute        : 380.12 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.31 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.808604686309947e-17,-6.160306639801938e-17,-4.37930941510345e-18)
    sum a = (2.1594444982175885e-16,8.643866872271033e-17,-1.4899019518122003e-16)
    sum e = 2.5920014656555814
    sum de = -1.3586408473958977e-18
Info: CFL hydro = 0.011120008103118242 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011120008103118242 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6357e+04 |  512 |      1 | 3.130e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1279.117359976086 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.122459822371685, dt = 0.011120008103118242 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.22 us    (0.8%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 471.00 ns  (0.1%)
   LB compute        : 370.84 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.11 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.191867443778142e-17,-6.00193722846698e-17,-6.753386912194959e-18)
    sum a = (-2.2763041451767662e-17,3.6193704283649095e-17,-5.444863310222203e-18)
    sum e = 2.5920014663116544
    sum de = -1.3247595295057257e-18
Info: CFL hydro = 0.011118863269675665 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011118863269675665 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6493e+04 |  512 |      1 | 3.104e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1289.5303870574455 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.133579830474805, dt = 0.011118863269675665 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.63 us    (0.9%)
   patch tree reduce : 1072.00 ns (0.3%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 382.31 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0326930123301136e-17,-6.02886881043152e-17,-5.982031276580147e-18)
    sum a = (4.074279975896378e-17,-1.2130921267505813e-17,2.2563981932899323e-17)
    sum e = 2.5920014669223987
    sum de = 2.168404344971009e-19
Info: CFL hydro = 0.01111841846534931 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01111841846534931 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6191e+04 |  512 |      1 | 3.162e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1265.7757171314383 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.14469869374448, dt = 0.01111841846534931 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.77 us    (1.0%)
   patch tree reduce : 1072.00 ns (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 370.04 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.77 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1371992597359914e-17,-6.061655084127481e-17,-5.766871355450398e-18)
    sum a = (1.3166030765621174e-16,8.891520332510172e-17,9.101703765668212e-17)
    sum e = 2.59200146745093
    sum de = 2.15485181781494e-18
Info: CFL hydro = 0.01111870213535524 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01111870213535524 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6145e+04 |  512 |      1 | 3.171e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1262.1307292442402 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.15581711220983, dt = 0.01111870213535524 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (0.8%)
   patch tree reduce : 671.00 ns  (0.2%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 621.00 ns  (0.2%)
   LB compute        : 365.37 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.36 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.320597478222777e-17,-5.91031130287023e-17,-4.300271076729256e-18)
    sum a = (4.288561693266413e-17,6.499586025637827e-17,3.817259008886964e-18)
    sum e = 2.5920014678658196
    sum de = 3.3881317890172014e-21
Info: CFL hydro = 0.01111973392616954 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01111973392616954 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6204e+04 |  512 |      1 | 3.160e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1266.7763796506263 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.166935814345187, dt = 0.01111973392616954 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.31 us    (1.1%)
   patch tree reduce : 1212.00 ns (0.3%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 701.00 ns  (0.2%)
   LB compute        : 387.59 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (74.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.332745963565477e-17,-5.821612723139191e-17,-4.736445610720175e-18)
    sum a = (-7.09588637848313e-17,-6.389225086500528e-17,9.823001786979368e-17)
    sum e = 2.592001468148047
    sum de = 6.471331717022855e-19
Info: CFL hydro = 0.011121523831073966 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011121523831073966 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6347e+04 |  512 |      1 | 3.132e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1278.0739411246395 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.178055548271356, dt = 0.011121523831073966 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.51 us    (0.9%)
   patch tree reduce : 752.00 ns  (0.2%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 712.00 ns  (0.2%)
   LB compute        : 370.35 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.16910732967224e-17,-5.989349641244423e-17,-3.2888730801261533e-18)
    sum a = (5.7200338215990246e-18,2.353000606858391e-17,3.2493539109390567e-18)
    sum e = 2.5920014682877133
    sum de = 1.9651164376299768e-19
Info: CFL hydro = 0.0111200854311106 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.0111200854311106 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6382e+04 |  512 |      1 | 3.125e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1281.0145873295437 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.18917707210243, dt = 0.0111200854311106 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.36 us    (0.9%)
   patch tree reduce : 781.00 ns  (0.2%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 752.00 ns  (0.2%)
   LB compute        : 380.84 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.90 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.234826244357449e-17,-5.913531383322512e-17,-3.619663162951481e-18)
    sum a = (2.4121329933457504e-18,-4.2376258752030435e-17,1.0749214018890286e-17)
    sum e = 2.5920014682495243
    sum de = 1.5449880957918438e-18
Info: CFL hydro = 0.011117603605784624 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011117603605784624 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6418e+04 |  512 |      1 | 3.119e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1283.6559091086174 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.20029715753354, dt = 0.011117603605784624 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (0.9%)
   patch tree reduce : 611.00 ns  (0.2%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 411.00 ns  (0.1%)
   LB compute        : 364.47 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.43 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.213017517657903e-17,-5.948366799124471e-17,-3.32839224931325e-18)
    sum a = (4.143365338327154e-17,8.772450539422382e-17,1.422397356148908e-17)
    sum e = 2.59200146807121
    sum de = -9.486769009248164e-19
Info: CFL hydro = 0.011114974586322539 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011114974586322539 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5874e+04 |  512 |      1 | 3.225e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1240.9086909189398 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.211414761139327, dt = 0.011114974586322539 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.41 us    (0.9%)
   patch tree reduce : 871.00 ns  (0.2%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 369.22 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.74 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.298935118816517e-17,-5.814879827648056e-17,-3.179097610161996e-18)
    sum a = (-4.392775206085719e-17,2.863529725838365e-17,-4.71624692424677e-17)
    sum e = 2.592001467788444
    sum de = 6.301925127571995e-19
Info: CFL hydro = 0.011112211167308443 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011112211167308443 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6440e+04 |  512 |      1 | 3.114e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1284.8192961702168 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.22252973572565, dt = 0.011112211167308443 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.2%)
   patch tree reduce : 1894.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 401.65 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501953125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.190623321785215e-17,-5.782679023125236e-17,-3.9065430577911454e-18)
    sum a = (6.311357686472618e-17,4.087599399585362e-17,6.153281009724231e-17)
    sum e = 2.5920014674368748
    sum de = 3.7947076036992655e-19
Info: CFL hydro = 0.01110932859214259 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01110932859214259 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5898e+04 |  512 |      1 | 3.220e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1242.1913166663617 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.23364194689296, dt = 0.01110932859214259 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 392.14 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509765625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.318694703410065e-17,-5.761602132892118e-17,-2.5936284370198238e-18)
    sum a = (-4.4097538121068426e-17,-5.58683958470918e-17,-6.33067816918631e-17)
    sum e = 2.5920014670590965
    sum de = 7.386127300057499e-19
Info: CFL hydro = 0.011106344536048522 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011106344536048522 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5847e+04 |  512 |      1 | 3.231e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1237.8190799236156 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.2447512754851, dt = 0.011106344536048522 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 401.66 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.25 us    (74.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509765625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.202186337954773e-17,-5.847373366757447e-17,-3.989972414963905e-18)
    sum a = (6.509831736167815e-17,3.0265828905584604e-17,-1.1771150460609946e-16)
    sum e = 2.5920014667005367
    sum de = 7.420008617947671e-19
Info: CFL hydro = 0.011102452402556612 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011102452402556612 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5816e+04 |  512 |      1 | 3.237e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1235.0774622368122 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.25585762002115, dt = 0.011102452402556612 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.1%)
   patch tree reduce : 1562.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 436.30 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.37 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509765625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.365093135381582e-17,-5.765700417104114e-17,-5.701006073471903e-18)
    sum a = (-4.5889073790883473e-17,-9.162592559674999e-19,-8.940114273880972e-18)
    sum e = 2.592001466398797
    sum de = 6.877907531704919e-19
Info: CFL hydro = 0.011098277624325343 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011098277624325343 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5475e+04 |  512 |      1 | 3.308e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1208.077978934329 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.266960072423707, dt = 0.011098277624325343 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (1.7%)
   patch tree reduce : 1954.00 ns (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 383.48 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.78 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509765625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.24595015864715e-17,-5.777409800566957e-17,-5.260440520682419e-18)
    sum a = (3.834237614908087e-17,-2.5819190535569803e-18,-2.6258292415426432e-17)
    sum e = 2.592001466202263
    sum de = 1.229891839413244e-18
Info: CFL hydro = 0.01109408571043771 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01109408571043771 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5629e+04 |  512 |      1 | 3.276e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1219.6307085826618 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.27805835004803, dt = 0.01109408571043771 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.4%)
   patch tree reduce : 1923.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 411.36 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 us    (73.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509765625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.32674490454077e-17,-5.80521958629121e-17,-5.706860765203325e-18)
    sum a = (-4.6615055565579764e-17,5.921435217159931e-17,-1.2455271189426576e-16)
    sum e = 2.5920014661493975
    sum de = -6.505213034913027e-19
Info: CFL hydro = 0.011089917206189603 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011089917206189603 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6669e+04 |  512 |      1 | 3.071e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1300.3016269101647 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.289152435758467, dt = 0.011089917206189603 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 2.32 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 415.44 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 us    (73.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509765625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.248292035339719e-17,-5.696907789259909e-17,-7.526206220742626e-18)
    sum a = (6.216511680423586e-17,6.345314898514864e-17,5.532683686193529e-17)
    sum e = 2.5920014662689446
    sum de = -4.573977915173222e-19
Info: CFL hydro = 0.011085812894218235 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011085812894218235 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6772e+04 |  512 |      1 | 3.053e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1307.8462562992434 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.300242352964656, dt = 0.011085812894218235 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.4%)
   patch tree reduce : 1834.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 394.59 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509765625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.394659328625262e-17,-5.615820308779717e-17,-6.040578193894364e-18)
    sum a = (4.5005015339438793e-17,-1.8218629729838121e-16,1.0476385384206032e-16)
    sum e = 2.5920014665780298
    sum de = 8.580443755686062e-19
Info: CFL hydro = 0.011081813734385644 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011081813734385644 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6609e+04 |  512 |      1 | 3.083e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1294.615106809289 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.311328165858875, dt = 0.011081813734385644 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.2%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 368.36 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.517578125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.426713765854796e-17,-5.968272751011305e-17,-4.421755930156257e-18)
    sum a = (-4.2153780466236415e-18,-8.022098610394046e-17,-8.379234806010771e-17)
    sum e = 2.592001467082389
    sum de = -2.405573570202213e-18
Info: CFL hydro = 0.011077959951321424 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011077959951321424 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7060e+04 |  512 |      1 | 3.001e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1329.3114020340026 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.32240997959326, dt = 0.011077959951321424 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.1%)
   patch tree reduce : 1302.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 429.90 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.517578125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.389243738773697e-17,-6.002522697640122e-17,-6.5777461602523065e-18)
    sum a = (3.040341416127301e-17,-1.5479219468705895e-16,-2.7832033552832593e-16)
    sum e = 2.5920014677760914
    sum de = -6.052050408131976e-19
Info: CFL hydro = 0.011074290713648294 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011074290713648294 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7304e+04 |  512 |      1 | 2.959e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1347.8456142172097 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.333487939544582, dt = 0.011074290713648294 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.85 us    (0.9%)
   patch tree reduce : 1062.00 ns (0.3%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 681.00 ns  (0.2%)
   LB compute        : 391.02 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.517578125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.43051931548022e-17,-6.198362136056179e-17,-1.0693594447441779e-17)
    sum a = (-1.090963257233124e-16,-1.7562904255918888e-16,-2.071389934577006e-17)
    sum e = 2.592001468642343
    sum de = -9.764172299473947e-19
Info: CFL hydro = 0.01107084365485783 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01107084365485783 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7121e+04 |  512 |      1 | 2.990e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1333.1670218539987 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.34456223025823, dt = 0.01107084365485783 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.13 us    (1.0%)
   patch tree reduce : 1062.00 ns (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 407.61 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.517578125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.234387142477592e-17,-6.407081896281363e-17,-9.446545108648952e-18)
    sum a = (-2.7839059182910295e-17,-7.248693832673236e-17,2.2845007136007567e-17)
    sum e = 2.592001469652878
    sum de = -5.077962518789531e-19
Info: CFL hydro = 0.011067654409550782 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011067654409550782 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7343e+04 |  512 |      1 | 2.952e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1350.0246820894922 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.355633073913086, dt = 0.011067654409550782 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.70 us    (0.9%)
   patch tree reduce : 912.00 ns  (0.2%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 387.12 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (73.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.517578125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.250194810152431e-17,-6.43313527448619e-17,-8.875712664835334e-18)
    sum a = (-3.0783969123815426e-17,-7.027386485225496e-17,3.1673882266991525e-17)
    sum e = 2.5920014707709647
    sum de = -1.0867432713272673e-18
Info: CFL hydro = 0.011064756631571067 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011064756631571067 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7081e+04 |  512 |      1 | 2.997e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1329.2445765350292 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.366700728322638, dt = 0.011064756631571067 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.25 us    (1.1%)
   patch tree reduce : 1252.00 ns (0.3%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 702.00 ns  (0.2%)
   LB compute        : 358.97 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.517578125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2147739251773296e-17,-6.523882996323227e-17,-8.69421722116126e-18)
    sum a = (-5.56546995988949e-17,7.708872602762984e-17,-8.477593627098656e-18)
    sum e = 2.592001471953278
    sum de = -2.0345731393048294e-18
Info: CFL hydro = 0.011062181306272503 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011062181306272503 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7068e+04 |  512 |      1 | 3.000e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1327.8575934132173 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.37776548495421, dt = 0.011062181306272503 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.2%)
   patch tree reduce : 1883.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.2%)
   LB compute        : 402.74 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.11 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.517578125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1272462837925744e-17,-6.370490072959977e-17,-8.96938773253808e-18)
    sum a = (-4.001096329253606e-17,-8.54082429779801e-17,4.728249042296184e-17)
    sum e = 2.5920014731531666
    sum de = -1.2891841457210451e-18
Info: CFL hydro = 0.011059955695357665 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011059955695357665 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6663e+04 |  512 |      1 | 3.073e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1296.0286553627259 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.388827666260482, dt = 0.011059955695357665 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 388.63 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.525390625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.087727114605478e-17,-6.54115433693092e-17,-8.231696574378943e-18)
    sum a = (-1.0125689349493871e-16,5.036205827368967e-17,-6.20128948192189e-17)
    sum e = 2.592001474322622
    sum de = -1.2010927192065979e-18
Info: CFL hydro = 0.011058103992041594 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011058103992041594 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6887e+04 |  512 |      1 | 3.032e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1313.1877414900152 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.39988762195584, dt = 0.011058103992041594 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.2%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 386.03 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.525390625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9559965506484895e-17,-6.383955863942248e-17,-9.660241356845844e-18)
    sum a = (3.3804990057229033e-17,2.2011299033453113e-16,9.601694439531628e-18)
    sum e = 2.5920014754152954
    sum de = -1.4247094172817332e-18
Info: CFL hydro = 0.011056646938955902 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011056646938955902 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7272e+04 |  512 |      1 | 2.964e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1342.9592449582062 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.410945725947883, dt = 0.011056646938955902 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (0.8%)
   patch tree reduce : 1663.00 ns (0.3%)
   gen split merge   : 772.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.2%)
   LB compute        : 581.25 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.37 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.525390625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.032985746916685e-17,-6.0584350036752e-17,-8.843511860312513e-18)
    sum a = (1.859859922320739e-16,-1.7144293797122233e-16,-1.6147239795261113e-17)
    sum e = 2.5920014763886776
    sum de = -1.4060746924421386e-19
Info: CFL hydro = 0.011055601722187166 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011055601722187166 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6880e+04 |  512 |      1 | 3.033e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1312.315357824213 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.42200237288684, dt = 0.011055601722187166 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (1.1%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 403.72 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.22 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.525390625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.345626285374605e-17,-6.458017714344733e-17,-9.186011326600685e-18)
    sum a = (-1.2073545288537879e-16,-4.7428857716247387e-17,4.641599604671143e-17)
    sum e = 2.5920014772063324
    sum de = -2.4851946672441172e-18
Info: CFL hydro = 0.011054981400438637 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011054981400438637 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7281e+04 |  512 |      1 | 2.963e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1343.3004754816218 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.433057974609028, dt = 0.011054981400438637 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.3%)
   patch tree reduce : 1051.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 389.77 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.525390625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.047037007072097e-17,-6.463433304196297e-17,-8.372209175933065e-18)
    sum a = (-3.015458976268759e-17,-1.3439444869478567e-16,-3.6767464073328425e-18)
    sum e = 2.5920014778418485
    sum de = 5.082197683525802e-19
Info: CFL hydro = 0.011054795177089441 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011054795177089441 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6946e+04 |  512 |      1 | 3.021e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1317.2225681461132 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.444112956009466, dt = 0.011054795177089441 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1734.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 398.97 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.067528428132073e-17,-6.636878546739666e-17,-8.606396845189934e-18)
    sum a = (4.2909035699589817e-17,-4.0646197345395317e-17,1.8658902548041033e-17)
    sum e = 2.5920014782771243
    sum de = 5.336307567702092e-19
Info: CFL hydro = 0.01105504794529124 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01105504794529124 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6868e+04 |  512 |      1 | 3.035e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1311.1198098205869 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.455167751186554, dt = 0.01105504794529124 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.3%)
   patch tree reduce : 1684.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.3%)
   LB compute        : 370.13 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.158568884555681e-17,-6.619460838838687e-17,-8.360499792470221e-18)
    sum a = (-7.170240963472185e-17,-6.00457183974612e-17,-2.2470306865196578e-17)
    sum e = 2.59200147850554
    sum de = -1.2281977735187355e-18
Info: CFL hydro = 0.01105574093827355 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01105574093827355 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6223e+04 |  512 |      1 | 3.156e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1261.0276098845422 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.466222799131845, dt = 0.01105574093827355 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.21 us    (1.1%)
   patch tree reduce : 1343.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 373.67 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.008981510817856e-17,-6.718551496393e-17,-8.913768161089575e-18)
    sum a = (-5.306546218067365e-18,-7.207710990553284e-17,3.660646005071433e-17)
    sum e = 2.5920014785283407
    sum de = -1.4416500762268192e-18
Info: CFL hydro = 0.011056870772734543 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011056870772734543 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6125e+04 |  512 |      1 | 3.175e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1253.46626039666 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 17.47727854007012, dt = 0.011056870772734543 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1923.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 408.62 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.035913092782396e-17,-6.82261864191902e-17,-8.111675393884798e-18)
    sum a = (-8.06893614424542e-17,-5.246974729700149e-17,-1.1772321398956231e-17)
    sum e = 2.592001478356727
    sum de = 1.1892342579450377e-18
Info: CFL hydro = 0.01105842925986152 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01105842925986152 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5657e+04 |  512 |      1 | 3.270e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1217.2063386230463 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.488335410842854, dt = 0.01105842925986152 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.2%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 405.88 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.90506073258512e-17,-6.86169870922626e-17,-8.597614807592801e-18)
    sum a = (3.8519480573956376e-17,-2.8176435793933475e-17,4.4327334771526724e-18)
    sum e = 2.5920014780118947
    sum de = -1.5754812818929986e-19
Info: CFL hydro = 0.011060405164103674 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011060405164103674 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5606e+04 |  512 |      1 | 3.281e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1213.42875523533 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 17.499393840102716, dt = 0.0006061598972841864 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.2%)
   patch tree reduce : 2.10 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 421.00 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.967705934111333e-17,-6.864333320505401e-17,-8.401482634590173e-18)
    sum a = (-3.923887582045482e-17,-1.0953542760316903e-16,-5.806975993810637e-17)
    sum e = 2.5920014214031757
    sum de = -1.0164395367051604e-20
Info: CFL hydro = 0.011060722008357018 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011060722008357018 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5809e+04 |  512 |      1 | 3.239e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.37986923870739 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1932                                                    [SPH][rank=0]
Info: time since start : 798.207891664 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14991144436454823 max=0.15010556783088724 delta=0.00019412346633901345
Number of particle pairs: 130816
Distance min=0.129058 max=1.974597 mean=0.800556
---------------- t = 17.5, dt = 0.011060722008357018 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.73 us    (1.6%)
   patch tree reduce : 1743.00 ns (0.3%)
   gen split merge   : 572.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.1%)
   LB compute        : 585.86 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.935505129588513e-17,-6.972791484829987e-17,-9.083554221300805e-18)
    sum a = (3.957917977734371e-17,2.2260269799331823e-17,-2.070072628937436e-17)
    sum e = 2.592001477444337
    sum de = 4.895850435129856e-19
Info: CFL hydro = 0.011062919895968922 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011062919895968922 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1844e+04 |  512 |      1 | 4.323e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 921.1399271664353 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.511060722008356, dt = 0.011062919895968922 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.35 us    (0.6%)
   patch tree reduce : 1703.00 ns (0.2%)
   gen split merge   : 791.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.1%)
   LB compute        : 688.71 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0306438702241163e-17,-6.85906409794712e-17,-9.057208108509407e-18)
    sum a = (-9.07813863144924e-17,-8.68499608168427e-17,-1.0543714339117383e-16)
    sum e = 2.5920014768910904
    sum de = 7.657177843178875e-19
Info: CFL hydro = 0.011065703166992095 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011065703166992095 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4646e+04 |  512 |      1 | 3.496e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1139.233789032097 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.522123641904326, dt = 0.011065703166992095 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.14 us    (1.0%)
   patch tree reduce : 1302.00 ns (0.3%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 415.31 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.863199686705455e-17,-7.007773267925232e-17,-1.076677809408455e-17)
    sum a = (-5.0206908942806993e-17,1.1005649516726557e-16,2.6158762655992262e-17)
    sum e = 2.592001476199706
    sum de = -1.7381116077658243e-18
Info: CFL hydro = 0.011068843165051266 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011068843165051266 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5757e+04 |  512 |      1 | 3.249e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1225.962741556971 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.533189345071317, dt = 0.011068843165051266 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.53 us    (0.8%)
   patch tree reduce : 952.00 ns  (0.2%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 402.63 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8383172468469124e-17,-6.779733024986356e-17,-9.64267728165158e-18)
    sum a = (-1.1757391935041105e-16,9.54314752221741e-19,6.773878333254935e-18)
    sum e = 2.5920014754821494
    sum de = 3.2356658585114273e-19
Info: CFL hydro = 0.011072315803725061 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011072315803725061 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5878e+04 |  512 |      1 | 3.225e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1235.7386277397227 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.54425818823637, dt = 0.011072315803725061 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.72 us    (0.9%)
   patch tree reduce : 1022.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        : 385.80 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6489179693354197e-17,-6.865211524265113e-17,-9.762698462145725e-18)
    sum a = (7.178583899189461e-17,9.133904570191031e-17,6.301990179702343e-17)
    sum e = 2.59200147476899
    sum de = -1.3247595295057257e-18
Info: CFL hydro = 0.011076091985594531 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011076091985594531 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5876e+04 |  512 |      1 | 3.225e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1236.0157333429363 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.555330504040096, dt = 0.011076091985594531 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.37 us    (1.1%)
   patch tree reduce : 1333.00 ns (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 396.77 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8242659866915e-17,-6.686936161043322e-17,-8.632742957981332e-18)
    sum a = (7.396524798891634e-17,1.5175360967845107e-17,1.1896733598248943e-16)
    sum e = 2.592001474097053
    sum de = -9.876404164985142e-19
Info: CFL hydro = 0.011079148805297714 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011079148805297714 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5677e+04 |  512 |      1 | 3.266e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1220.8976852396481 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.56640659602569, dt = 0.011079148805297714 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (1.1%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 398.51 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9056462017582626e-17,-6.729529043389415e-17,-7.008066002511804e-18)
    sum a = (-7.469415710947836e-17,7.08768981005914e-17,3.587755093015232e-17)
    sum e = 2.5920014734903845
    sum de = 1.1604351377383915e-18
Info: CFL hydro = 0.011071237862348579 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011071237862348579 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5431e+04 |  512 |      1 | 3.318e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1202.1170464863878 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.577485744830987, dt = 0.011071237862348579 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.2%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 412.24 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7630844580981436e-17,-6.595602970033143e-17,-7.037339461168912e-18)
    sum a = (6.663224659531064e-17,-5.1907696890785006e-17,5.497555535804999e-17)
    sum e = 2.592001472884818
    sum de = 8.809142651444724e-20
Info: CFL hydro = 0.011064111256501849 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011064111256501849 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6049e+04 |  512 |      1 | 3.190e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1249.2934502821593 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.588556982693337, dt = 0.011064111256501849 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.81 us    (0.9%)
   patch tree reduce : 1302.00 ns (0.3%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 391.92 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.901255182959696e-17,-6.752801443021817e-17,-6.443088250429607e-18)
    sum a = (2.0532403902095986e-16,-1.1533742710900796e-16,3.4343621696519834e-17)
    sum e = 2.5920014724137714
    sum de = -9.512179997665793e-19
Info: CFL hydro = 0.01105784774512406 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01105784774512406 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5844e+04 |  512 |      1 | 3.232e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1232.5775591780578 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.59962109394984, dt = 0.01105784774512406 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (1.0%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 422.92 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.208041029686194e-17,-6.894777717508794e-17,-6.191336505978473e-18)
    sum a = (7.546990376389173e-17,-9.689514815502954e-18,-1.1838186680934726e-17)
    sum e = 2.5920014720944033
    sum de = 1.624609192833748e-18
Info: CFL hydro = 0.011052516636346654 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011052516636346654 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6088e+04 |  512 |      1 | 3.183e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1250.8279324514021 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.610678941694964, dt = 0.011052516636346654 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.16 us    (1.1%)
   patch tree reduce : 1152.00 ns (0.3%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 368.29 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (61.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2010153996084885e-17,-6.843256430272282e-17,-6.498707821878113e-18)
    sum a = (6.481143746683848e-17,1.2200006629936588e-16,3.6767464073328427e-17)
    sum e = 2.5920014719385236
    sum de = -1.946481712790382e-18
Info: CFL hydro = 0.011048176326601438 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011048176326601438 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5451e+04 |  512 |      1 | 3.314e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1200.7662841621539 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.62173145833131, dt = 0.011048176326601438 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.47 us    (1.1%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 407.54 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (73.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.246096525940436e-17,-6.641269565538232e-17,-5.731743205061868e-18)
    sum a = (2.1884837692054405e-17,6.570135061001458e-17,-1.243770711423231e-16)
    sum e = 2.592001471951651
    sum de = -2.1480755542369057e-18
Info: CFL hydro = 0.01104487356220756 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01104487356220756 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5996e+04 |  512 |      1 | 3.201e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1242.6079033274293 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.63277963465791, dt = 0.01104487356220756 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.89 us    (1.0%)
   patch tree reduce : 721.00 ns  (0.2%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 621.00 ns  (0.2%)
   LB compute        : 367.41 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.62 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.34 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2797610033961104e-17,-6.585357259503154e-17,-8.18485904052757e-18)
    sum a = (5.661486904284807e-17,-3.9243998675719814e-17,9.013883389696886e-17)
    sum e = 2.592001472133266
    sum de = 9.190307477709159e-19
Info: CFL hydro = 0.011042642991051678 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011042642991051678 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6233e+04 |  512 |      1 | 3.154e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1260.6517869440233 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.64382450822012, dt = 0.011042642991051678 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.39 us    (0.6%)
   patch tree reduce : 1232.00 ns (0.2%)
   gen split merge   : 772.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.1%)
   LB compute        : 660.54 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.346211754547747e-17,-6.703914767064445e-17,-5.778580738913242e-18)
    sum a = (-1.6246476820108712e-16,-5.505752104228989e-17,-1.192015236517463e-17)
    sum e = 2.592001472478047
    sum de = 1.0071221742853631e-18
Info: CFL hydro = 0.011041506972923897 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011041506972923897 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5360e+04 |  512 |      1 | 3.333e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1192.584703985579 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.65486715121117, dt = 0.011041506972923897 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.91 us    (1.0%)
   patch tree reduce : 982.00 ns  (0.3%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 377.35 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.047329741658668e-17,-6.783831309198351e-17,-6.564573103856608e-18)
    sum a = (-9.41112422367385e-17,8.541995236144295e-17,5.95890524424103e-17)
    sum e = 2.5920014729771195
    sum de = -1.1316360175317453e-18
Info: CFL hydro = 0.011041473853557955 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011041473853557955 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6033e+04 |  512 |      1 | 3.194e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1244.6932667422523 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.665908658184094, dt = 0.011041473853557955 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (0.9%)
   patch tree reduce : 1182.00 ns (0.3%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 365.13 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.89 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0001994732207235e-17,-6.605263211389988e-17,-5.595621622306313e-18)
    sum a = (-1.0907290695638672e-17,-3.7622249066116e-17,-1.4402541659297442e-16)
    sum e = 2.592001473617376
    sum de = 1.0672615135404184e-19
Info: CFL hydro = 0.011042538646425872 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011042538646425872 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5916e+04 |  512 |      1 | 3.217e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1235.6599814939552 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.676950132037653, dt = 0.011042538646425872 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.41 us    (0.8%)
   patch tree reduce : 752.00 ns  (0.2%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 682.00 ns  (0.2%)
   LB compute        : 389.43 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.51 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.021861832626984e-17,-6.677275919686476e-17,-8.079474589361979e-18)
    sum a = (7.611099250848241e-20,-5.956563367548461e-17,1.4800660697034118e-17)
    sum e = 2.5920014743837414
    sum de = -6.073226231813333e-19
Info: CFL hydro = 0.01104468326201355 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01104468326201355 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6128e+04 |  512 |      1 | 3.175e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1252.2360216806878 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.68799267068408, dt = 0.01104468326201355 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 us    (0.9%)
   patch tree reduce : 631.00 ns  (0.2%)
   gen split merge   : 611.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 611.00 ns  (0.2%)
   LB compute        : 371.86 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.56 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.040011376994391e-17,-6.774756537014648e-17,-7.161751660461623e-18)
    sum a = (-8.907913469358153e-18,-5.3178164996503515e-17,-3.5303791140472996e-17)
    sum e = 2.59200147525834
    sum de = 3.2526065174565133e-19
Info: CFL hydro = 0.01104787614331834 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01104787614331834 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5993e+04 |  512 |      1 | 3.201e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1241.9510674128949 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.699037353946093, dt = 0.01104787614331834 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.49 us    (0.8%)
   patch tree reduce : 1062.00 ns (0.3%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 711.00 ns  (0.2%)
   LB compute        : 406.25 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0285947281181185e-17,-6.833303454328865e-17,-7.760393889999495e-18)
    sum a = (-8.400018961657318e-17,8.759789768553183e-17,4.0432501097198423e-17)
    sum e = 2.592001476221737
    sum de = 4.87890977618477e-19
Info: CFL hydro = 0.011052072497223137 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011052072497223137 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6166e+04 |  512 |      1 | 3.167e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1255.7827588405496 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.710085230089412, dt = 0.011052072497223137 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.47 us    (0.8%)
   patch tree reduce : 782.00 ns  (0.2%)
   gen split merge   : 611.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 611.00 ns  (0.1%)
   LB compute        : 408.30 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.54 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.850026630309756e-17,-6.636000342979953e-17,-6.836816269367718e-18)
    sum a = (7.410576059047047e-17,-5.63279891480084e-17,4.436685394071382e-17)
    sum e = 2.5920014772523223
    sum de = -5.378659215064807e-19
Info: CFL hydro = 0.011057167630151637 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011057167630151637 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6347e+04 |  512 |      1 | 3.132e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1270.2975141064478 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.721137302586634, dt = 0.011057167630151637 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (0.8%)
   patch tree reduce : 550.00 ns  (0.1%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 410.00 ns  (0.1%)
   LB compute        : 373.67 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.50 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.037669500301822e-17,-6.787636858823775e-17,-6.306966667674052e-18)
    sum a = (5.33069682145948e-17,1.3671290662042867e-16,-1.2730441700803396e-16)
    sum e = 2.5920014783270124
    sum de = 7.877406409464993e-19
Info: CFL hydro = 0.011063095957309725 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011063095957309725 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6599e+04 |  512 |      1 | 3.085e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1290.4707754564865 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.732194470216786, dt = 0.011063095957309725 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (0.8%)
   patch tree reduce : 681.00 ns  (0.2%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 511.00 ns  (0.1%)
   LB compute        : 399.94 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.28 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.08962988941819e-17,-6.54086160234435e-17,-8.62688826624991e-18)
    sum a = (7.179023001069318e-17,-1.9017209682004044e-16,6.376930233864542e-17)
    sum e = 2.5920014794224797
    sum de = -9.33430307874239e-19
Info: CFL hydro = 0.011069832984424412 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011069832984424412 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6090e+04 |  512 |      1 | 3.182e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1251.579134266105 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.743257566174098, dt = 0.011069832984424412 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.59 us    (0.9%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 491.00 ns  (0.1%)
   LB compute        : 369.92 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.34 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.145981297333124e-17,-6.929027664137611e-17,-6.890972167883369e-18)
    sum a = (-1.0642365894791839e-17,1.228958341342734e-16,-1.4865062306079757e-17)
    sum e = 2.5920014805163505
    sum de = 2.795208725939191e-20
Info: CFL hydro = 0.011077286875869919 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011077286875869919 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7048e+04 |  512 |      1 | 3.003e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1326.9563109368023 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.754327399158523, dt = 0.011077286875869919 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 us    (0.8%)
   patch tree reduce : 661.00 ns  (0.2%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 732.00 ns  (0.2%)
   LB compute        : 366.60 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.67 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0947527446831843e-17,-6.633658466287384e-17,-7.687942079823151e-18)
    sum a = (-1.164820193425009e-16,-9.770602295983144e-17,1.3174227334045163e-16)
    sum e = 2.592001481585575
    sum de = 1.6373146870425626e-18
Info: CFL hydro = 0.011085356107753224 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011085356107753224 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6327e+04 |  512 |      1 | 3.136e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1271.6300367456688 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.765404686034394, dt = 0.011085356107753224 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (0.9%)
   patch tree reduce : 571.00 ns  (0.2%)
   gen split merge   : 391.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 401.00 ns  (0.1%)
   LB compute        : 355.98 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.01 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9220393386062434e-17,-6.85086752952313e-17,-5.2040891127674845e-18)
    sum a = (6.7296754106827e-17,6.775049271601219e-17,-1.454539613754413e-16)
    sum e = 2.592001482606665
    sum de = -2.143840389500634e-18
Info: CFL hydro = 0.011093930213609205 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011093930213609205 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6158e+04 |  512 |      1 | 3.169e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1259.3880499732327 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.776490042142147, dt = 0.011093930213609205 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (0.8%)
   patch tree reduce : 621.00 ns  (0.2%)
   gen split merge   : 410.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 340.00 ns  (0.1%)
   LB compute        : 362.80 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.11 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (11.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1047057206266013e-17,-6.687228895629893e-17,-8.60127398992494e-18)
    sum a = (2.9403725548132754e-17,-1.328107545814361e-16,1.3664850501138304e-17)
    sum e = 2.592001483558895
    sum de = 2.346281263894412e-19
Info: CFL hydro = 0.011102891258636768 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011102891258636768 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6725e+04 |  512 |      1 | 3.061e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1304.6259879428917 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.787583972355755, dt = 0.011102891258636768 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.43 us    (0.9%)
   patch tree reduce : 681.00 ns  (0.2%)
   gen split merge   : 411.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 581.00 ns  (0.2%)
   LB compute        : 361.20 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.29 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.107925801078883e-17,-6.928149460377897e-17,-7.308118953747167e-18)
    sum a = (-3.6386909110786014e-18,2.1740665908168143e-17,1.5321728261130653e-17)
    sum e = 2.592001484423051
    sum de = 5.505714157152952e-19
Info: CFL hydro = 0.011112115573779568 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011112115573779568 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6486e+04 |  512 |      1 | 3.106e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1286.982988560727 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.798686863614392, dt = 0.011112115573779568 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (0.8%)
   patch tree reduce : 721.00 ns  (0.2%)
   gen split merge   : 411.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 351.00 ns  (0.1%)
   LB compute        : 404.22 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.42 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.09094719505776e-17,-6.81047015657632e-17,-7.120768818341671e-18)
    sum a = (2.2986251574028116e-17,1.4709473873317224e-16,7.485223378622674e-18)
    sum e = 2.592001485182933
    sum de = 7.496241583200558e-19
Info: CFL hydro = 0.01112147511773257 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01112147511773257 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6152e+04 |  512 |      1 | 3.170e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1261.9729051023937 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.809798979188173, dt = 0.01112147511773257 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 us    (1.0%)
   patch tree reduce : 1052.00 ns (0.3%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 364.86 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 2.82 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.123001632287294e-17,-6.58945554371515e-17,-7.150774113465208e-18)
    sum a = (1.0626924145350214e-16,9.08238328295452e-17,1.2373890974359814e-17)
    sum e = 2.5920014858257394
    sum de = 4.912791094074942e-19
Info: CFL hydro = 0.011130839330822883 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011130839330822883 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6552e+04 |  512 |      1 | 3.093e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1294.3002456470574 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.820920454305906, dt = 0.011130839330822883 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.66 us    (1.0%)
   patch tree reduce : 1042.00 ns (0.3%)
   gen split merge   : 611.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 491.00 ns  (0.1%)
   LB compute        : 365.28 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.35 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.270100762039265e-17,-6.536177848959213e-17,-7.104668416080262e-18)
    sum a = (-1.4235243843072064e-16,-5.763358540411545e-17,3.3839386371151136e-17)
    sum e = 2.5920014863439222
    sum de = -1.2705494208814505e-19
Info: CFL hydro = 0.011131687910876027 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011131687910876027 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6457e+04 |  512 |      1 | 3.111e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1288.0104580749262 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.832051293636727, dt = 0.011131687910876027 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.49 us    (0.8%)
   patch tree reduce : 581.00 ns  (0.1%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 702.00 ns  (0.2%)
   LB compute        : 399.38 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.67 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9943447814893015e-17,-6.685472488110466e-17,-6.547009028662343e-18)
    sum a = (7.761857562932351e-18,-9.057793577682549e-17,8.223207271368382e-17)
    sum e = 2.5920014866510415
    sum de = 4.37069000783219e-19
Info: CFL hydro = 0.011130540118311176 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011130540118311176 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6044e+04 |  512 |      1 | 3.191e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1255.7665212279633 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.843182981547603, dt = 0.011130540118311176 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.96 us    (1.0%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 377.10 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.075724996556064e-17,-6.781196697919212e-17,-5.401684958702968e-18)
    sum a = (-5.903285672792524e-17,3.734122386300775e-17,1.1147918525800104e-16)
    sum e = 2.592001486815691
    sum de = -1.900318417165023e-18
Info: CFL hydro = 0.011130310623532296 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011130310623532296 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6448e+04 |  512 |      1 | 3.113e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1287.2802408769141 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.854313521665915, dt = 0.011130310623532296 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.42 us    (0.8%)
   patch tree reduce : 741.00 ns  (0.2%)
   gen split merge   : 520.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 571.00 ns  (0.1%)
   LB compute        : 412.48 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.50 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9800007867473185e-17,-6.682545142244756e-17,-3.8977610201940125e-18)
    sum a = (-2.3284109015864197e-17,-1.1284332843142231e-16,5.346797223720889e-17)
    sum e = 2.5920014868783285
    sum de = -1.5056010637445189e-18
Info: CFL hydro = 0.011131032750180174 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011131032750180174 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6675e+04 |  512 |      1 | 3.071e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1304.9597588294102 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.865443832289447, dt = 0.011131032750180174 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (0.8%)
   patch tree reduce : 812.00 ns  (0.2%)
   gen split merge   : 571.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 390.25 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.52 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9832208671996e-17,-6.90209608217307e-17,-3.658450495672149e-18)
    sum a = (4.2127434353445016e-17,-5.336551513190901e-17,3.475345011771935e-17)
    sum e = 2.5920014868548704
    sum de = 1.872789846379258e-18
Info: CFL hydro = 0.011132726304407257 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011132726304407257 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5897e+04 |  512 |      1 | 3.221e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1244.198452312313 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.87657486503963, dt = 0.011132726304407257 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (0.8%)
   patch tree reduce : 561.00 ns  (0.1%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 368.40 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.32 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.052159862337091e-17,-6.927563991204755e-17,-3.441826901609546e-18)
    sum a = (1.3347818943881816e-16,5.372265132752574e-17,6.174065165370779e-17)
    sum e = 2.592001486766616
    sum de = 1.0742495353552664e-18
Info: CFL hydro = 0.011135396914422268 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011135396914422268 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6841e+04 |  512 |      1 | 3.040e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1318.2613124489178 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.887707591344036, dt = 0.011135396914422268 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.83 us    (1.0%)
   patch tree reduce : 501.00 ns  (0.1%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 611.00 ns  (0.2%)
   LB compute        : 360.69 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.79 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2455110567672934e-17,-6.806371872364326e-17,-2.477266438857817e-18)
    sum a = (-8.024147752500044e-17,-1.8717449465355252e-17,-3.1474822748123185e-17)
    sum e = 2.592001486635841
    sum de = 3.6234481296762867e-19
Info: CFL hydro = 0.011139035503790974 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011139035503790974 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6578e+04 |  512 |      1 | 3.088e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1297.9802724754861 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.89884298825846, dt = 0.011139035503790974 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 us    (0.8%)
   patch tree reduce : 601.00 ns  (0.2%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 381.00 ns  (0.1%)
   LB compute        : 386.51 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.44 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0324002777435426e-17,-6.85613675208141e-17,-3.381816311362473e-18)
    sum a = (6.605263211389988e-17,2.2855545581124127e-16,-1.0629778307569282e-16)
    sum e = 2.5920014864876113
    sum de = -5.499361410048545e-19
Info: CFL hydro = 0.01114361858196611 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01114361858196611 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6370e+04 |  512 |      1 | 3.128e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1282.146984535417 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.90998202376225, dt = 0.01114361858196611 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (0.6%)
   patch tree reduce : 521.00 ns  (0.1%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 450.00 ns  (0.1%)
   LB compute        : 488.17 us  (97.9%)
   LB move op cnt    : 0
   LB apply          : 2.14 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2016008687816304e-17,-6.460945060210444e-17,-5.107486699199026e-18)
    sum a = (-2.923247581498867e-17,-9.896770902795282e-17,6.369904603786836e-18)
    sum e = 2.592001486348291
    sum de = -9.207248136654245e-19
Info: CFL hydro = 0.011149108134540002 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011149108134540002 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6112e+04 |  512 |      1 | 3.178e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1262.434044814569 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.921125642344215, dt = 0.011149108134540002 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (0.9%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 581.00 ns  (0.2%)
   LB compute        : 359.23 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.21 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.097680090548895e-17,-6.779440290399785e-17,-4.2087915184257914e-18)
    sum a = (-5.232045265785023e-17,-7.782056249405756e-17,3.179097610161996e-17)
    sum e = 2.592001486240732
    sum de = 3.07472959853311e-19
Info: CFL hydro = 0.011155451557236833 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011155451557236833 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6523e+04 |  512 |      1 | 3.099e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1295.2470532658265 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.932274750478754, dt = 0.011155451557236833 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.59 us    (0.9%)
   patch tree reduce : 641.00 ns  (0.2%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 611.00 ns  (0.2%)
   LB compute        : 369.71 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.40 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0341566852629695e-17,-6.848818387417133e-17,-3.637959074612173e-18)
    sum a = (-1.5737411374061593e-17,9.858129937367898e-17,-8.976120628029216e-17)
    sum e = 2.5920014861857457
    sum de = 5.963111948670274e-19
Info: CFL hydro = 0.011162582454391253 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011162582454391253 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6402e+04 |  512 |      1 | 3.122e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1286.5128914711697 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.94343020203599, dt = 0.011162582454391253 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (0.8%)
   patch tree reduce : 551.00 ns  (0.1%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 681.00 ns  (0.2%)
   LB compute        : 389.66 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.26 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0364985619555377e-17,-6.635707608393381e-17,-5.572202855380626e-18)
    sum a = (2.017819505234497e-17,1.6820529344374614e-16,4.509576306127583e-17)
    sum e = 2.5920014862003824
    sum de = -3.5914196963582334e-19
Info: CFL hydro = 0.011163191921024435 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011163191921024435 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6134e+04 |  512 |      1 | 3.173e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1266.3386921204537 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.954592784490384, dt = 0.011163191921024435 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 us    (0.8%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 411.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 361.00 ns  (0.1%)
   LB compute        : 381.94 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.42 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.095630948442897e-17,-6.409716507560503e-17,-4.253433542877883e-18)
    sum a = (-5.904456611138808e-18,2.0608514894604467e-17,-1.151032394397511e-17)
    sum e = 2.5920014862284813
    sum de = 2.594461917439922e-18
Info: CFL hydro = 0.011159944619127745 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011159944619127745 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6619e+04 |  512 |      1 | 3.081e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1304.439135698086 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.96575597641141, dt = 0.011159944619127745 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (0.9%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 421.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 320.00 ns  (0.1%)
   LB compute        : 362.72 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.21 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.063430143920078e-17,-6.486705703828699e-17,-4.5410452741839745e-18)
    sum a = (-5.555809718532645e-17,6.711818600901865e-17,-4.280657859428993e-17)
    sum e = 2.5920014863025918
    sum de = -1.9142944607947188e-19
Info: CFL hydro = 0.011156405773989608 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011156405773989608 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4785e+04 |  512 |      1 | 3.463e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1160.1423245751012 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.976915921030535, dt = 0.011156405773989608 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (0.8%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 421.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 451.00 ns  (0.1%)
   LB compute        : 372.96 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.26 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.969169607044188e-17,-6.378101172210826e-17,-5.3877800658408415e-18)
    sum a = (-9.461328205270792e-17,-6.933125948349605e-17,6.340338410543156e-17)
    sum e = 2.5920014864561582
    sum de = 3.2187251995663413e-19
Info: CFL hydro = 0.011153010587778598 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011153010587778598 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5837e+04 |  512 |      1 | 3.233e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1242.2878943124497 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.988072326804524, dt = 0.011153010587778598 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (0.8%)
   patch tree reduce : 481.00 ns  (0.1%)
   gen split merge   : 431.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 591.00 ns  (0.1%)
   LB compute        : 388.51 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.19 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.84036638895291e-17,-6.526371240309081e-17,-4.054374024009544e-18)
    sum a = (-3.953380591642519e-18,1.1263255952909113e-16,3.608246514075209e-17)
    sum e = 2.592001486687902
    sum de = -6.606856988583543e-20
Info: CFL hydro = 0.011149800878901956 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011149800878901956 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5768e+04 |  512 |      1 | 3.247e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1236.4989411448628 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.999225337392303, dt = 0.0007746626076965413 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (1.1%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 417.18 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.882812904005718e-17,-6.432257070726477e-17,-3.9065430577911454e-18)
    sum a = (1.2299390022077472e-16,-2.5116627527799195e-17,8.503354270716911e-17)
    sum e = 2.59200143498227
    sum de = -9.486769009248164e-19
Info: CFL hydro = 0.01114970542670563 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01114970542670563 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6241e+04 |  512 |      1 | 3.153e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.45970344742632 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1978                                                    [SPH][rank=0]
Info: time since start : 800.639813579 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14992205796639696 max=0.15009714283149905 delta=0.0001750848651020931
Number of particle pairs: 130816
Distance min=0.127583 max=1.975699 mean=0.800561
---------------- t = 18, dt = 0.01114970542670563 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.29 us    (1.5%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.2%)
   LB compute        : 583.47 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (72.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.03708403112868e-17,-6.460213223744016e-17,-3.1117686552506463e-18)
    sum a = (5.1462740319196955e-18,-1.0885042867059269e-16,-8.166270394280306e-17)
    sum e = 2.5920014866386984
    sum de = 5.658180087658726e-19
Info: CFL hydro = 0.011146621514365991 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011146621514365991 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3091e+04 |  512 |      1 | 3.911e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1026.2584004407113 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.011149705426707, dt = 0.011146621514365991 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.05 us    (1.0%)
   patch tree reduce : 1884.00 ns (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 378.48 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9782443792278916e-17,-6.62590099974325e-17,-4.853539445348609e-18)
    sum a = (-2.9825995189261545e-18,-2.2528853782510794e-17,-1.3037227547529895e-16)
    sum e = 2.5920014872027335
    sum de = -6.2511031507367365e-19
Info: CFL hydro = 0.011143915631466944 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011143915631466944 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4453e+04 |  512 |      1 | 3.542e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1132.7831257685286 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.022296326941074, dt = 0.011143915631466944 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.32 us    (0.8%)
   patch tree reduce : 832.00 ns  (0.2%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 531.00 ns  (0.1%)
   LB compute        : 412.07 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.48 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.961265773206769e-17,-6.608922393722128e-17,-6.476752727885282e-18)
    sum a = (1.116943451791308e-16,1.4109807072726356e-16,-3.289385365652653e-17)
    sum e = 2.5920014875853044
    sum de = -8.436448154652831e-19
Info: CFL hydro = 0.011141506383184082 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011141506383184082 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6325e+04 |  512 |      1 | 3.136e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1279.1704241407172 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.033440242572542, dt = 0.011141506383184082 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.61 us    (0.9%)
   patch tree reduce : 1022.00 ns (0.3%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 388.00 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.145103093573411e-17,-6.375320193638401e-17,-6.287938919546932e-18)
    sum a = (-1.2207032260014295e-18,-2.176774385742597e-17,9.275258783681545e-17)
    sum e = 2.5920014879891333
    sum de = -1.2671612890924333e-18
Info: CFL hydro = 0.011139419372171083 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011139419372171083 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5695e+04 |  512 |      1 | 3.262e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1229.5501345002722 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.044581748955725, dt = 0.011139419372171083 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (0.8%)
   patch tree reduce : 751.00 ns  (0.2%)
   gen split merge   : 390.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 461.00 ns  (0.1%)
   LB compute        : 400.34 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.48 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.537109375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.085970707086052e-17,-6.486412969242128e-17,-4.794992528034392e-18)
    sum a = (-7.874560378762218e-18,-7.142723912334503e-18,9.192158752918678e-17)
    sum e = 2.592001488389193
    sum de = -1.6601845766184287e-19
Info: CFL hydro = 0.011137677261284644 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011137677261284644 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6185e+04 |  512 |      1 | 3.163e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1267.655521749306 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.055721168327896, dt = 0.011137677261284644 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (0.7%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 451.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 491.00 ns  (0.1%)
   LB compute        : 407.21 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.63 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.08567797249948e-17,-6.48041191021742e-17,-3.4220673170159975e-18)
    sum a = (5.895967308128247e-17,4.6070569234557544e-17,-1.1656691237260652e-17)
    sum e = 2.592001488767751
    sum de = 1.531435568635775e-18
Info: CFL hydro = 0.0111362972997073 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.0111362972997073 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6043e+04 |  512 |      1 | 3.191e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1256.336475256447 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.06685884558918, dt = 0.0111362972997073 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (0.8%)
   patch tree reduce : 480.00 ns  (0.1%)
   gen split merge   : 411.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 651.00 ns  (0.2%)
   LB compute        : 384.25 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.47 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1872568740396474e-17,-6.4127902207195e-17,-4.34710861058063e-18)
    sum a = (3.114696001116357e-17,-1.1337025068725026e-16,-6.207290540946597e-17)
    sum e = 2.5920014891117513
    sum de = 4.675621868843738e-19
Info: CFL hydro = 0.011135290935617709 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011135290935617709 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6531e+04 |  512 |      1 | 3.097e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1294.4002379069243 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.077995142888888, dt = 0.011135290935617709 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.41 us    (0.9%)
   patch tree reduce : 481.00 ns  (0.1%)
   gen split merge   : 411.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 501.00 ns  (0.1%)
   LB compute        : 377.70 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.40 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.196624380809922e-17,-6.64990523584208e-17,-5.406807813967962e-18)
    sum a = (-1.3678901761293715e-16,7.168484555952759e-17,-6.279156881949799e-17)
    sum e = 2.5920014894125205
    sum de = 5.116079001415974e-19
Info: CFL hydro = 0.011134663751592227 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011134663751592227 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6181e+04 |  512 |      1 | 3.164e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1266.8940028178934 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.089130433824504, dt = 0.011134663751592227 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (0.8%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 401.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 511.00 ns  (0.1%)
   LB compute        : 365.32 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.25 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9589238965142e-17,-6.427280582754769e-17,-6.1181528593357015e-18)
    sum a = (1.0747457611370859e-16,-2.4162312775577455e-17,2.3793467196497885e-17)
    sum e = 2.5920014896666475
    sum de = -1.2502206301473473e-18
Info: CFL hydro = 0.01113441530418089 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01113441530418089 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6117e+04 |  512 |      1 | 3.177e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1261.7923433570154 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.100265097576095, dt = 0.01113441530418089 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (0.8%)
   patch tree reduce : 470.00 ns  (0.1%)
   gen split merge   : 480.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 572.00 ns  (0.1%)
   LB compute        : 386.87 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.20 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.19867352291592e-17,-6.524322098203084e-17,-5.354847424851594e-18)
    sum a = (4.1626858210408455e-18,1.6056492073424078e-17,-1.276908266623078e-17)
    sum e = 2.592001489875953
    sum de = -8.944667923005412e-19
Info: CFL hydro = 0.011134538930341508 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011134538930341508 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6178e+04 |  512 |      1 | 3.165e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1266.5594565196718 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.111399512880276, dt = 0.011134538930341508 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.46 us    (0.9%)
   patch tree reduce : 571.00 ns  (0.1%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 421.00 ns  (0.1%)
   LB compute        : 382.96 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.46 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.12739265108586e-17,-6.481875583150276e-17,-5.9410484344601946e-18)
    sum a = (3.057905491321566e-17,-2.6441031981093433e-16,2.0485566368244612e-17)
    sum e = 2.5920014900484785
    sum de = 1.1689054672109345e-18
Info: CFL hydro = 0.011128434870193035 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011128434870193035 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6665e+04 |  512 |      1 | 3.072e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1304.6942343064825 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.122534051810618, dt = 0.011128434870193035 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (0.8%)
   patch tree reduce : 530.00 ns  (0.1%)
   gen split merge   : 410.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 400.00 ns  (0.1%)
   LB compute        : 388.88 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.46 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1872568740396474e-17,-6.895509553975221e-17,-5.3467972237208894e-18)
    sum a = (-3.598293538131792e-17,-2.192508869770793e-17,-4.869347113023448e-17)
    sum e = 2.592001490134373
    sum de = 1.5432940298973352e-18
Info: CFL hydro = 0.011122401166689087 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011122401166689087 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6610e+04 |  512 |      1 | 3.082e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1299.6925604908527 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.133662486680812, dt = 0.011122401166689087 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 us    (0.9%)
   patch tree reduce : 651.00 ns  (0.2%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 742.00 ns  (0.2%)
   LB compute        : 363.31 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.50 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.095338213856326e-17,-6.823057743798877e-17,-6.257201787956967e-18)
    sum a = (-1.152086238909167e-16,1.0736333697081157e-16,4.1831772421008216e-17)
    sum e = 2.5920014902074735
    sum de = -8.250100906256885e-19
Info: CFL hydro = 0.011116856183241012 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011116856183241012 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6270e+04 |  512 |      1 | 3.147e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1272.3984264104197 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.1447848878475, dt = 0.011116856183241012 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.52 us    (0.9%)
   patch tree reduce : 601.00 ns  (0.2%)
   gen split merge   : 401.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 351.00 ns  (0.1%)
   LB compute        : 370.07 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.45 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.939017944627366e-17,-6.589162809128579e-17,-5.214334823297473e-18)
    sum a = (-1.110635021450701e-16,-3.542088497510143e-19,-7.077736834115723e-17)
    sum e = 2.592001490289877
    sum de = -4.2012834183813297e-19
Info: CFL hydro = 0.011111889144014222 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011111889144014222 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6336e+04 |  512 |      1 | 3.134e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1276.8985568825203 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.15590174403074, dt = 0.011111889144014222 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (0.8%)
   patch tree reduce : 460.00 ns  (0.1%)
   gen split merge   : 401.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 411.00 ns  (0.1%)
   LB compute        : 385.66 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.40 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (72.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.812849337815228e-17,-6.659126375319069e-17,-6.6948399948807416e-18)
    sum a = (-9.538463768832273e-17,-4.2856343474007016e-17,-6.029747014191233e-17)
    sum e = 2.592001490399964
    sum de = 4.62479989200848e-19
Info: CFL hydro = 0.011107577507456456 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011107577507456456 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6541e+04 |  512 |      1 | 3.095e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1292.3478694342944 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.167013633174754, dt = 0.011107577507456456 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (0.8%)
   patch tree reduce : 582.00 ns  (0.2%)
   gen split merge   : 401.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 350.00 ns  (0.1%)
   LB compute        : 356.92 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.19 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7149296186072e-17,-6.736847408053692e-17,-7.26859978456007e-18)
    sum a = (9.002174006234042e-17,-3.5245244223158776e-17,9.270318887533157e-17)
    sum e = 2.5920014905540287
    sum de = -7.284483346386983e-19
Info: CFL hydro = 0.011103986488783597 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011103986488783597 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6306e+04 |  512 |      1 | 3.140e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1273.5375735341472 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.17812121068221, dt = 0.011103986488783597 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.43 us    (0.9%)
   patch tree reduce : 611.00 ns  (0.2%)
   gen split merge   : 391.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 551.00 ns  (0.1%)
   LB compute        : 367.08 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.04 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9194047273271037e-17,-6.7792939231065e-17,-5.081872422874056e-18)
    sum a = (4.421463195569686e-17,-1.909214973616624e-17,-1.5397839253639135e-17)
    sum e = 2.592001490764889
    sum de = 5.827586677109586e-19
Info: CFL hydro = 0.011101168422021985 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011101168422021985 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6442e+04 |  512 |      1 | 3.114e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1283.7080422449383 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.189225197170995, dt = 0.011101168422021985 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (0.8%)
   patch tree reduce : 521.00 ns  (0.1%)
   gen split merge   : 410.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 310.00 ns  (0.1%)
   LB compute        : 361.18 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.15 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.957752958167916e-17,-6.793198815968626e-17,-6.1562083555899426e-18)
    sum a = (1.158292212144474e-16,-4.467129791074775e-18,3.65449857875344e-17)
    sum e = 2.5920014910408717
    sum de = 5.8106460181645e-19
Info: CFL hydro = 0.011099162734919702 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011099162734919702 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6367e+04 |  512 |      1 | 3.128e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1277.52111545645 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 18.200326365593018, dt = 0.011099162734919702 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (0.8%)
   patch tree reduce : 501.00 ns  (0.1%)
   gen split merge   : 401.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 441.00 ns  (0.1%)
   LB compute        : 357.54 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.17 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.114073227396876e-17,-6.790564204689486e-17,-5.3416743684558956e-18)
    sum a = (-9.797241143361112e-17,-7.38159533497651e-17,-8.614007944440782e-17)
    sum e = 2.5920014913852887
    sum de = 1.6771252355635147e-19
Info: CFL hydro = 0.011097994375712227 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011097994375712227 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6385e+04 |  512 |      1 | 3.125e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1278.7039519672494 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.211425528327936, dt = 0.011097994375712227 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (0.8%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 440.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 330.00 ns  (0.1%)
   LB compute        : 390.00 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 2.10 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.904767997998549e-17,-6.932394111883177e-17,-7.100277397281696e-18)
    sum a = (-1.4349263964541502e-16,1.6158949178723958e-18,-9.089408913032227e-17)
    sum e = 2.592001491794608
    sum de = 1.9905274260476058e-19
Info: CFL hydro = 0.01109767427291295 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01109767427291295 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6889e+04 |  512 |      1 | 3.032e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1317.9066327477708 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.22252352270365, dt = 0.01109767427291295 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (0.8%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 501.00 ns  (0.1%)
   LB compute        : 387.61 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.20 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6906326479218e-17,-6.862137811106117e-17,-7.967137691765324e-18)
    sum a = (3.768665067516164e-17,2.146329988739204e-17,3.951331449536521e-17)
    sum e = 2.592001492259898
    sum de = -7.448595979917504e-19
Info: CFL hydro = 0.011098199287138006 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011098199287138006 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6417e+04 |  512 |      1 | 3.119e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1280.9918013286892 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.233621196976564, dt = 0.011098199287138006 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 us    (0.8%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 391.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 371.00 ns  (0.1%)
   LB compute        : 367.19 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.11 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.840659123539481e-17,-6.820423132519737e-17,-6.829497904703441e-18)
    sum a = (-1.3907234738819162e-16,-3.7411480163784816e-17,1.4689421554137104e-17)
    sum e = 2.5920014927678117
    sum de = -1.23793865241216e-18
Info: CFL hydro = 0.011099233148275052 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011099233148275052 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6403e+04 |  512 |      1 | 3.121e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1279.9574557716503 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.2447193962637, dt = 0.011099233148275052 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (0.7%)
   patch tree reduce : 481.00 ns  (0.1%)
   gen split merge   : 451.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 331.00 ns  (0.1%)
   LB compute        : 392.32 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 2.11 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.595567090932839e-17,-6.925807583685328e-17,-6.809006483643465e-18)
    sum a = (4.2376258752030435e-17,-1.6627324517237696e-18,8.649136094829312e-17)
    sum e = 2.5920014932966353
    sum de = -3.7608262858090935e-19
Info: CFL hydro = 0.011101028241895806 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011101028241895806 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7710e+04 |  512 |      1 | 2.891e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1382.1098469916742 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.255818629411976, dt = 0.011101028241895806 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (0.9%)
   patch tree reduce : 601.00 ns  (0.2%)
   gen split merge   : 411.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 621.00 ns  (0.2%)
   LB compute        : 346.24 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.56 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.752985114861441e-17,-6.88599567991166e-17,-5.311303155099145e-18)
    sum a = (5.237607222929874e-17,-1.1424845444696353e-16,1.1202367158902325e-16)
    sum e = 2.5920014938272002
    sum de = 1.4712962293807197e-18
Info: CFL hydro = 0.011103547705558938 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011103547705558938 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7093e+04 |  512 |      1 | 2.995e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1334.1802947879712 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.266919657653872, dt = 0.011103547705558938 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 us    (0.9%)
   patch tree reduce : 762.00 ns  (0.2%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.2%)
   LB compute        : 357.25 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.81 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8256564759777134e-17,-7.089446217578565e-17,-3.978994867967489e-18)
    sum a = (1.9718601751428367e-16,8.194226547297845e-17,-5.419102666603948e-17)
    sum e = 2.5920014943380423
    sum de = 5.759824041329242e-19
Info: CFL hydro = 0.011106738728324727 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011106738728324727 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7303e+04 |  512 |      1 | 2.959e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1350.8842064641992 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.278023205359432, dt = 0.011106738728324727 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (0.9%)
   patch tree reduce : 501.00 ns  (0.1%)
   gen split merge   : 431.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 311.00 ns  (0.1%)
   LB compute        : 345.98 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.14 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.115317349389803e-17,-6.893314044575938e-17,-5.305814381600937e-18)
    sum a = (2.5666968550552837e-17,3.929669090130261e-17,-1.5362711103250604e-16)
    sum e = 2.5920014948080072
    sum de = -4.997494388800372e-19
Info: CFL hydro = 0.011110538006866708 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011110538006866708 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7491e+04 |  512 |      1 | 2.927e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1365.9321841470228 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.289129944087758, dt = 0.011110538006866708 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (0.9%)
   patch tree reduce : 492.00 ns  (0.1%)
   gen split merge   : 451.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 310.00 ns  (0.1%)
   LB compute        : 350.69 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.34 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0545017390296596e-17,-6.851745733282843e-17,-7.580910996608097e-18)
    sum a = (-3.2051509883668227e-17,5.326598537247484e-17,-2.2372240778695263e-18)
    sum e = 2.5920014952182817
    sum de = 6.877907531704919e-19
Info: CFL hydro = 0.011114872771755371 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011114872771755371 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7343e+04 |  512 |      1 | 2.952e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1354.8857370907838 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.300240482094626, dt = 0.011114872771755371 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (0.8%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 441.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 571.00 ns  (0.2%)
   LB compute        : 363.60 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.28 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.975682951595395e-17,-6.793491550555197e-17,-6.87962870265374e-18)
    sum a = (6.712404070075007e-18,-1.3708175219950824e-16,6.968912751557921e-18)
    sum e = 2.592001495554623
    sum de = 1.8295911660692887e-18
Info: CFL hydro = 0.011119662100973524 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011119662100973524 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6860e+04 |  512 |      1 | 3.037e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1317.6548366155268 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.311355354866382, dt = 0.011119662100973524 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (0.8%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 441.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 331.00 ns  (0.1%)
   LB compute        : 376.98 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 2.04 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9962475563020136e-17,-7.034412115303201e-17,-6.853648508095555e-18)
    sum a = (-1.183116105085702e-16,3.8500452825829255e-17,-3.551895106160274e-17)
    sum e = 2.5920014958093005
    sum de = -4.726443845678996e-19
Info: CFL hydro = 0.011124818264153917 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011124818264153917 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6767e+04 |  512 |      1 | 3.054e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1310.956904928492 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.322475016967356, dt = 0.011124818264153917 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 us    (0.8%)
   patch tree reduce : 501.00 ns  (0.1%)
   gen split merge   : 420.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 591.00 ns  (0.2%)
   LB compute        : 380.43 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.03 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.800554485179242e-17,-6.914098200222485e-17,-7.392280147386354e-18)
    sum a = (3.428836804330454e-17,7.43311662221302e-17,7.398134839117775e-18)
    sum e = 2.5920014959812305
    sum de = -1.1689054672109345e-18
Info: CFL hydro = 0.011130248363904973 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011130248363904973 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6480e+04 |  512 |      1 | 3.107e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1289.1050449138647 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.33359983523151, dt = 0.011130248363904973 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (0.9%)
   patch tree reduce : 492.00 ns  (0.1%)
   gen split merge   : 450.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 421.00 ns  (0.1%)
   LB compute        : 346.73 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.02 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9181606053341764e-17,-6.819544928760024e-17,-7.123696164207382e-18)
    sum a = (-1.3172617293819022e-16,1.0209411441253203e-16,9.417564384578414e-17)
    sum e = 2.592001496077499
    sum de = -1.009663273127126e-18
Info: CFL hydro = 0.01113585574891046 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01113585574891046 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6581e+04 |  512 |      1 | 3.088e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1297.6584152072892 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.344730083595415, dt = 0.01113585574891046 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (0.8%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 430.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 561.00 ns  (0.1%)
   LB compute        : 399.76 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.03 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.676361836826459e-17,-6.695132729467312e-17,-5.6947854635072684e-18)
    sum a = (-1.5573480005581784e-17,-1.6732708968403286e-17,-1.1469048367268587e-16)
    sum e = 2.592001496111791
    sum de = -9.351243737687476e-19
Info: CFL hydro = 0.01114154137242659 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01114154137242659 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6583e+04 |  512 |      1 | 3.087e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1298.4410575401255 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.355865939344326, dt = 0.01114154137242659 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 us    (0.9%)
   patch tree reduce : 571.00 ns  (0.1%)
   gen split merge   : 672.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 641.00 ns  (0.2%)
   LB compute        : 377.26 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.31 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529296875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.742007567865025e-17,-6.78324584002521e-17,-8.104722947453736e-18)
    sum a = (7.640079974918779e-17,2.1786478870966518e-16,7.192196057465016e-17)
    sum e = 2.592001496104271
    sum de = -3.9302328752599536e-19
Info: CFL hydro = 0.011147205766955085 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011147205766955085 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7067e+04 |  512 |      1 | 3.000e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1337.0356383418837 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.367007480716754, dt = 0.011147205766955085 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (0.9%)
   patch tree reduce : 481.00 ns  (0.1%)
   gen split merge   : 532.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 321.00 ns  (0.1%)
   LB compute        : 352.79 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.06 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.521484375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.87256719347573e-17,-6.390688759433383e-17,-6.257567706190181e-18)
    sum a = (-1.0294304471358817e-16,1.0081779161508209e-17,-4.024515096179293e-17)
    sum e = 2.592001496080527
    sum de = -4.37069000783219e-19
Info: CFL hydro = 0.011148887941275124 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011148887941275124 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7200e+04 |  512 |      1 | 2.977e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1348.103416281119 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.37815468648371, dt = 0.011148887941275124 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (0.8%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 381.00 ns  (0.1%)
   LB compute        : 353.50 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.07 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.521484375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6470151945227076e-17,-6.480265542924135e-17,-7.293848142651827e-18)
    sum a = (-1.659043995932974e-16,-8.940699743054115e-17,-8.024733221673185e-17)
    sum e = 2.592001496033375
    sum de = 6.471331717022855e-19
Info: CFL hydro = 0.011146709615070473 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011146709615070473 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7563e+04 |  512 |      1 | 2.915e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1376.7882182027856 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.389303574424986, dt = 0.011146709615070473 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.78 us    (1.0%)
   patch tree reduce : 702.00 ns  (0.2%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 671.00 ns  (0.2%)
   LB compute        : 350.73 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.37 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.521484375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4439305750890167e-17,-6.644782380577086e-17,-8.426365074448716e-18)
    sum a = (5.215944863523614e-17,-1.2410190063094627e-16,-3.5406248245772875e-17)
    sum e = 2.5920014959944395
    sum de = -1.094366567852556e-18
Info: CFL hydro = 0.011143823989171448 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011143823989171448 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6784e+04 |  512 |      1 | 3.051e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1315.4586186876784 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.400450284040055, dt = 0.011143823989171448 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 19.99 us   (4.9%)
   patch tree reduce : 501.00 ns  (0.1%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 461.00 ns  (0.1%)
   LB compute        : 381.06 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 2.10 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.521484375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.592273826833915e-17,-6.77797661746693e-17,-8.718733742786588e-18)
    sum a = (1.3799508410961003e-16,-1.1697674079380604e-17,5.907383957004519e-18)
    sum e = 2.5920014960203988
    sum de = 1.0537089863843496e-18
Info: CFL hydro = 0.011140439822986313 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011140439822986313 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6497e+04 |  512 |      1 | 3.104e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1292.6162647250615 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.411594108029227, dt = 0.011140439822986313 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (0.8%)
   patch tree reduce : 571.00 ns  (0.2%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 481.00 ns  (0.1%)
   LB compute        : 348.65 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 1934.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.517578125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8242659866915e-17,-6.750752300915819e-17,-8.438806294377987e-18)
    sum a = (2.6709103678745903e-17,3.7452463005904767e-17,-1.0557765599272795e-16)
    sum e = 2.5920014961361444
    sum de = -5.996993266560446e-19
Info: CFL hydro = 0.011136868773672308 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011136868773672308 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6098e+04 |  512 |      1 | 3.181e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1260.972656321257 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.422734547852215, dt = 0.011136868773672308 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.32 us    (0.8%)
   patch tree reduce : 511.00 ns  (0.1%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 361.89 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 2.38 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.517578125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.789869672769398e-17,-6.645660584336798e-17,-9.95956247161478e-18)
    sum a = (3.98587413075191e-17,4.4621533031030667e-17,6.938395170907885e-17)
    sum e = 2.5920014963605533
    sum de = -6.623797647528629e-19
Info: CFL hydro = 0.011133155586130216 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011133155586130216 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6181e+04 |  512 |      1 | 3.164e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1267.0582613806123 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.433871416625887, dt = 0.011133155586130216 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (0.8%)
   patch tree reduce : 511.00 ns  (0.1%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 602.00 ns  (0.2%)
   LB compute        : 373.48 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.15 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.521484375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.845196509631333e-17,-6.648002461029367e-17,-8.252919831905347e-18)
    sum a = (-6.962399407006714e-17,-2.2692785150990602e-17,7.401794021449914e-17)
    sum e = 2.5920014967012475
    sum de = -3.4897757426877174e-19
Info: CFL hydro = 0.011129348569287384 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011129348569287384 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6474e+04 |  512 |      1 | 3.108e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1289.5609248458013 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.445004572212017, dt = 0.011129348569287384 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (0.8%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 591.00 ns  (0.2%)
   LB compute        : 369.76 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.12 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.521484375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.695023666720366e-17,-6.668786616675915e-17,-7.499860107951228e-18)
    sum a = (-1.0657880827880106e-16,-1.250452378361716e-16,-3.118501550741781e-17)
    sum e = 2.5920014971570757
    sum de = -4.811147140404426e-19
Info: CFL hydro = 0.011125498893734403 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011125498893734403 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6349e+04 |  512 |      1 | 3.132e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1279.3324796958448 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.456133920781305, dt = 0.011125498893734403 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (0.8%)
   patch tree reduce : 561.00 ns  (0.1%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 701.00 ns  (0.2%)
   LB compute        : 415.03 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.50 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.521484375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.565342244869375e-17,-6.866382462611398e-17,-8.282925127028884e-18)
    sum a = (3.749344584802472e-17,-9.359310201850768e-17,1.0883871928712984e-17)
    sum e = 2.5920014977164625
    sum de = 6.674619624363887e-19
Info: CFL hydro = 0.011121659838213746 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011121659838213746 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6515e+04 |  512 |      1 | 3.100e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1291.926989865226 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.467259419675038, dt = 0.011121659838213746 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (0.8%)
   patch tree reduce : 971.00 ns  (0.3%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 320.00 ns  (0.1%)
   LB compute        : 367.32 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.15 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.521484375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.692535422734512e-17,-6.979378013027838e-17,-8.151194563071895e-18)
    sum a = (1.0976376058069447e-16,5.345333550788034e-18,3.443436941835687e-17)
    sum e = 2.592001498357722
    sum de = -1.9820570965750628e-19
Info: CFL hydro = 0.011117885902305611 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011117885902305611 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6506e+04 |  512 |      1 | 3.102e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1290.7686776747169 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.47838107951325, dt = 0.011117885902305611 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 us    (0.8%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 731.00 ns  (0.2%)
   LB compute        : 423.05 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.33 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.521484375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.83480443180806e-17,-6.919074688194194e-17,-7.502787453816939e-18)
    sum a = (-1.388732878693233e-17,4.511039979060438e-17,4.75664429719358e-17)
    sum e = 2.592001499051423
    sum de = -6.098637220230962e-20
Info: CFL hydro = 0.011114231778020034 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011114231778020034 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6293e+04 |  512 |      1 | 3.142e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1273.6677247673647 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.489498965415557, dt = 0.010501034584443403 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (0.7%)
   patch tree reduce : 481.00 ns  (0.1%)
   gen split merge   : 401.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 330.00 ns  (0.1%)
   LB compute        : 416.67 us  (97.6%)
   LB move op cnt    : 0
   LB apply          : 2.25 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.521484375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7436176080911663e-17,-6.845891041551422e-17,-7.355688324064969e-18)
    sum a = (9.777335191474278e-18,-2.5965557828855347e-17,1.3834929295936105e-16)
    sum e = 2.592001494269067
    sum de = 1.6940658945086007e-21
Info: CFL hydro = 0.01111094685574316 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01111094685574316 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6294e+04 |  512 |      1 | 3.142e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1203.1004377548122 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 2023                                                    [SPH][rank=0]
Info: time since start : 802.821574346 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14990988709859027 max=0.15010387745991824 delta=0.00019399036132797254
Number of particle pairs: 130816
Distance min=0.127638 max=1.976665 mean=0.800556
---------------- t = 18.5, dt = 0.01111094685574316 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.56 us   (1.5%)
   patch tree reduce : 1473.00 ns (0.2%)
   gen split merge   : 571.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.1%)
   LB compute        : 673.73 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.60 us    (73.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.521484375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.758693439299577e-17,-6.91029265059706e-17,-5.306546218067365e-18)
    sum a = (4.832462555115491e-17,7.82362456069885e-17,4.796456200967247e-18)
    sum e = 2.5920015003184913
    sum de = -4.730679010415267e-19
Info: CFL hydro = 0.011107670767875092 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011107670767875092 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3984e+04 |  512 |      1 | 3.661e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1092.5114601551047 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.511110946855744, dt = 0.011107670767875092 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (0.7%)
   patch tree reduce : 551.00 ns  (0.1%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 521.00 ns  (0.1%)
   LB compute        : 436.46 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.77 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.521484375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.835389900981202e-17,-6.812226564095747e-17,-6.088147564212165e-18)
    sum a = (2.601005348601415e-16,-1.954471740700514e-16,1.725377653249982e-17)
    sum e = 2.5920015009882844
    sum de = 1.6431380385549359e-18
Info: CFL hydro = 0.01110467931668637 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01110467931668637 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5318e+04 |  512 |      1 | 3.343e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1196.3299578605952 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.52221861762362, dt = 0.01110467931668637 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.85 us    (0.9%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 601.00 ns  (0.1%)
   LB compute        : 391.57 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.521484375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.237607222929874e-17,-7.123988898793954e-17,-5.665146086616946e-18)
    sum a = (4.3605744015629e-17,2.4453876423802254e-16,6.085659320226311e-17)
    sum e = 2.592001501521355
    sum de = -2.115464785767615e-19
Info: CFL hydro = 0.011102011043003382 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011102011043003382 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5857e+04 |  512 |      1 | 3.229e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1238.0742115912815 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.533323296940306, dt = 0.011102011043003382 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.67 us    (0.9%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 394.80 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.185793201106792e-17,-6.628096509142533e-17,-4.565927714042517e-18)
    sum a = (-1.0476385384206032e-16,-1.4255003427665613e-16,3.950910643568326e-17)
    sum e = 2.592001501927449
    sum de = -4.544331762019321e-19
Info: CFL hydro = 0.011099710536457474 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011099710536457474 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6405e+04 |  512 |      1 | 3.121e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1280.579585902135 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.54442530798331, dt = 0.011099710536457474 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.49 us    (0.9%)
   patch tree reduce : 831.00 ns  (0.2%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 611.00 ns  (0.2%)
   LB compute        : 389.26 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.38 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.979415317574176e-17,-6.983769031826404e-17,-4.178054386835828e-18)
    sum a = (6.46006685645073e-17,-5.424957358335369e-17,1.1728630761910496e-16)
    sum e = 2.5920015021823106
    sum de = -3.7100043089738355e-19
Info: CFL hydro = 0.01109764197953636 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01109764197953636 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6086e+04 |  512 |      1 | 3.183e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1255.4210305675315 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.555525018519766, dt = 0.01109764197953636 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.12 us    (1.0%)
   patch tree reduce : 932.00 ns  (0.2%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 701.00 ns  (0.2%)
   LB compute        : 391.22 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.16383810711396e-17,-6.977328870921839e-17,-2.543863557302739e-18)
    sum a = (2.2318670349352755e-16,-5.871084868269704e-17,-9.196842506303815e-17)
    sum e = 2.592001502271523
    sum de = -8.961608581950498e-19
Info: CFL hydro = 0.011095338770366349 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011095338770366349 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6457e+04 |  512 |      1 | 3.111e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1284.1177461648483 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.566622660499302, dt = 0.011095338770366349 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.34 us    (0.7%)
   patch tree reduce : 601.00 ns  (0.1%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 440.00 ns  (0.1%)
   LB compute        : 438.88 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 2.48 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.506923042575273e-17,-7.063978308546881e-17,-4.780355798705838e-18)
    sum a = (-8.450076575960974e-17,-7.072467611557442e-18,1.082591048057191e-16)
    sum e = 2.5920015021904566
    sum de = -1.1977045874175807e-18
Info: CFL hydro = 0.01109353885109963 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01109353885109963 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6134e+04 |  512 |      1 | 3.173e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1258.7149950731252 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.57771799926967, dt = 0.01109353885109963 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.64 us    (0.9%)
   patch tree reduce : 771.00 ns  (0.2%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 711.00 ns  (0.2%)
   LB compute        : 376.55 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.09 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (72.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.20423548006077e-17,-7.059587289748314e-17,-2.4348199238050093e-18)
    sum a = (-5.350602773346313e-17,-5.693102239634484e-17,5.965638139732165e-17)
    sum e = 2.5920015019583027
    sum de = 4.1335207826009857e-19
Info: CFL hydro = 0.011092279618481308 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011092279618481308 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5878e+04 |  512 |      1 | 3.225e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1238.5249503125706 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.58881153812077, dt = 0.011092279618481308 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (1.1%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 393.60 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.172034675537951e-17,-7.119890614581958e-17,-1.6268724648688116e-18)
    sum a = (-5.998131678841556e-18,5.4261282966816535e-17,6.234075755617851e-17)
    sum e = 2.5920015015999547
    sum de = 4.472333961502706e-19
Info: CFL hydro = 0.011091590996165766 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011091590996165766 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6077e+04 |  512 |      1 | 3.185e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1253.873680213334 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.59990381773925, dt = 0.011091590996165766 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.43 us    (0.8%)
   patch tree reduce : 722.00 ns  (0.2%)
   gen split merge   : 612.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 501.00 ns  (0.1%)
   LB compute        : 406.60 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.54 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1869641394530764e-17,-7.081835118327717e-17,-1.2331444459307005e-18)
    sum a = (1.1299555041643928e-18,1.640484623144367e-17,4.969169607044188e-17)
    sum e = 2.592001501151799
    sum de = 8.82608331038981e-19
Info: CFL hydro = 0.011091495204310606 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011091495204310606 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6099e+04 |  512 |      1 | 3.180e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1255.551524695724 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.610995408735416, dt = 0.011091495204310606 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.74 us    (1.0%)
   patch tree reduce : 882.00 ns  (0.2%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 376.23 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.56 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.210382906378763e-17,-7.034704849889772e-17,-7.713556356148121e-19)
    sum a = (-5.057795003128585e-17,-9.978736587035186e-17,-1.4911899839931132e-17)
    sum e = 2.592001500659397
    sum de = -1.5331296345302836e-18
Info: CFL hydro = 0.011092006197019659 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011092006197019659 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5986e+04 |  512 |      1 | 3.203e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1246.737418694031 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.622086903939728, dt = 0.011092006197019659 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.69 us    (0.9%)
   patch tree reduce : 852.00 ns  (0.2%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 492.00 ns  (0.1%)
   LB compute        : 416.99 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.89 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1190497153685843e-17,-7.182828550694742e-17,-1.4256174366011897e-18)
    sum a = (-3.889637635416665e-17,-8.880396418220471e-17,1.3577030125166978e-17)
    sum e = 2.5920015001742547
    sum de = -2.930733997499879e-19
Info: CFL hydro = 0.01109312941775729 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01109312941775729 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6158e+04 |  512 |      1 | 3.169e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1260.208100894568 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.63317891013675, dt = 0.01109312941775729 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (0.7%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 431.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 430.00 ns  (0.1%)
   LB compute        : 399.19 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 2.37 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0845070341531964e-17,-7.280309168022914e-17,-1.1219053030336878e-18)
    sum a = (-1.5526203369850556e-16,1.5397839253639135e-17,5.286786633473817e-18)
    sum e = 2.59200149974949
    sum de = 4.0149361699853836e-19
Info: CFL hydro = 0.011094861566668782 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011094861566668782 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5984e+04 |  512 |      1 | 3.203e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1246.696079276239 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.644272039554508, dt = 0.011094861566668782 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.48 us    (1.1%)
   patch tree reduce : 1363.00 ns (0.3%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.2%)
   LB compute        : 387.63 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.521484375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.832462555115491e-17,-7.225860534920691e-17,-1.0077388142709643e-18)
    sum a = (-1.160751182671671e-16,-5.871084868269704e-17,2.201364091014568e-17)
    sum e = 2.5920014994370413
    sum de = -1.0113573390216346e-18
Info: CFL hydro = 0.01109719063221619 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01109719063221619 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6257e+04 |  512 |      1 | 3.149e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1268.2013836975448 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.655366901121177, dt = 0.01109719063221619 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.50 us    (0.9%)
   patch tree reduce : 671.00 ns  (0.2%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 572.00 ns  (0.2%)
   LB compute        : 367.38 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.54 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.521484375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.73790928365303e-17,-7.313973645478589e-17,-7.790399185123031e-19)
    sum a = (6.405032754175366e-18,-3.3500546087195104e-17,-1.1274965336371956e-16)
    sum e = 2.5920014992827833
    sum de = -1.0655674476459098e-18
Info: CFL hydro = 0.011100095943980896 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011100095943980896 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6034e+04 |  512 |      1 | 3.193e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1251.0720269731985 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.666464091753394, dt = 0.011100095943980896 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (0.8%)
   patch tree reduce : 651.00 ns  (0.2%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 741.00 ns  (0.2%)
   LB compute        : 410.13 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.62 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.521484375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8181185603735074e-17,-7.365202198128528e-17,-2.57002671097753e-18)
    sum a = (2.5421071497833124e-17,-1.5936470892929933e-17,-1.1077076755849901e-17)
    sum e = 2.5920014993233784
    sum de = -2.862971361719535e-19
Info: CFL hydro = 0.011103548401709483 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011103548401709483 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6235e+04 |  512 |      1 | 3.154e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1267.1172440302194 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.677564187697374, dt = 0.011103548401709483 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.62 us    (0.8%)
   patch tree reduce : 1303.00 ns (0.3%)
   gen split merge   : 652.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 411.26 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.521484375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.86466335963831e-17,-7.337392412404275e-17,-2.153062884230339e-18)
    sum a = (-5.412662505699384e-17,1.3369188568701506e-16,1.396578165613338e-16)
    sum e = 2.5920014995824157
    sum de = -5.98005260761536e-19
Info: CFL hydro = 0.011107510806793069 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011107510806793069 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5896e+04 |  512 |      1 | 3.221e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1241.059889267826 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.688667736099084, dt = 0.011107510806793069 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.2%)
   patch tree reduce : 1452.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        : 372.60 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.521484375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.750789605462158e-17,-7.105546619839975e-17,1.959492138860208e-19)
    sum a = (-1.695987100758245e-16,-1.6726854276671864e-17,-4.764548131030999e-17)
    sum e = 2.5920015000684637
    sum de = 2.0667603913004928e-19
Info: CFL hydro = 0.011111938297232758 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011111938297232758 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5911e+04 |  512 |      1 | 3.218e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1242.6724646324128 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.699775246905876, dt = 0.011111938297232758 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.84 us    (0.9%)
   patch tree reduce : 1322.00 ns (0.3%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.3%)
   LB compute        : 416.99 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (73.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.525390625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4849866008556113e-17,-7.269770722906355e-17,-1.3843601558063273e-18)
    sum a = (-7.145065789027071e-17,-4.0813056059740834e-17,4.1814208345813953e-17)
    sum e = 2.5920015007732102
    sum de = -1.1045309632196076e-18
Info: CFL hydro = 0.01111677936672145 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01111677936672145 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5941e+04 |  512 |      1 | 3.212e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1245.5022926756692 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.71088718520311, dt = 0.01111677936672145 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.2%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.3%)
   LB compute        : 373.93 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.525390625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4642024452090645e-17,-7.294506795471611e-17,-3.269479413765819e-19)
    sum a = (-3.756370214880178e-17,9.303690630402262e-17,5.4682820771478903e-17)
    sum e = 2.5920015016723923
    sum de = 9.351243737687476e-19
Info: CFL hydro = 0.011121975915004991 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011121975915004991 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6110e+04 |  512 |      1 | 3.178e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1259.2636346535396 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.72200396456983, dt = 0.011121975915004991 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.93 us    (0.9%)
   patch tree reduce : 1001.00 ns (0.2%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 415.27 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.525390625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.446638370014799e-17,-7.121647022101385e-17,2.1406216643010678e-19)
    sum a = (-3.7212420644916476e-17,9.0876525055128e-17,1.509807903699034e-16)
    sum e = 2.5920015027270837
    sum de = -1.844837759119866e-18
Info: CFL hydro = 0.01112631031418913 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01112631031418913 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5767e+04 |  512 |      1 | 3.247e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1233.0373401483034 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.733125940484836, dt = 0.01112631031418913 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.36 us    (1.0%)
   patch tree reduce : 1352.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 413.82 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.525390625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4021427128559943e-17,-7.00294314724681e-17,2.3839572893882832e-18)
    sum a = (6.46826342487472e-17,-1.1861605447860412e-17,-1.2271433869059933e-17)
    sum e = 2.592001503874041
    sum de = 1.480613591800517e-18
Info: CFL hydro = 0.011127146362040681 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011127146362040681 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5872e+04 |  512 |      1 | 3.226e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1241.7222339688083 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.744252250799025, dt = 0.011127146362040681 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.2%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 390.09 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.525390625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.523481198989709e-17,-7.066905654412592e-17,1.3564588905237706e-18)
    sum a = (1.1550135847748776e-16,-6.621363613651398e-17,-1.1415477937926078e-16)
    sum e = 2.592001505027189
    sum de = -2.4818065354551e-19
Info: CFL hydro = 0.01112874418145606 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01112874418145606 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6249e+04 |  512 |      1 | 3.151e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1271.3202411236102 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.755379397161065, dt = 0.01112874418145606 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.69 us    (0.9%)
   patch tree reduce : 1072.00 ns (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 374.60 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.525390625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.684192487017236e-17,-7.155457866850346e-17,-4.2922208755985513e-19)
    sum a = (-6.461237794797014e-17,6.491682191800407e-17,1.362620953571092e-16)
    sum e = 2.592001506156733
    sum de = -5.505714157152952e-19
Info: CFL hydro = 0.011131096808362169 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011131096808362169 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5807e+04 |  512 |      1 | 3.239e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1236.8914034263366 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.76650814134252, dt = 0.011131096808362169 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.22 us    (1.0%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 392.02 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.525390625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.528750421547989e-17,-7.008358737098375e-17,2.3374856737701233e-18)
    sum a = (3.4905672102736316e-17,6.080390097668031e-17,-4.8617360137725995e-17)
    sum e = 2.5920015071971516
    sum de = -2.6046263128069735e-19
Info: CFL hydro = 0.011134186033294543 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011134186033294543 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5870e+04 |  512 |      1 | 3.226e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1242.0716322806068 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.777639238150883, dt = 0.011134186033294543 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (1.0%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 419.21 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (61.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.525390625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.610130636614751e-17,-6.957715653621577e-17,1.0187163612673799e-18)
    sum a = (-1.2406091778882633e-16,-1.0351021797506965e-16,7.609928312501956e-17)
    sum e = 2.592001508088755
    sum de = -7.589415207398531e-19
Info: CFL hydro = 0.011137982900257717 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011137982900257717 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5464e+04 |  512 |      1 | 3.311e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1210.6020356931226 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.78877342418418, dt = 0.011137982900257717 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.15 us    (1.1%)
   patch tree reduce : 1323.00 ns (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.2%)
   LB compute        : 370.48 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.525390625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3820903936758746e-17,-7.154433295797347e-17,2.1472081924989174e-18)
    sum a = (1.4202311202082818e-16,-1.8090997450093127e-18,-4.3904333293931505e-17)
    sum e = 2.592001508781683
    sum de = 1.0850492054327587e-18
Info: CFL hydro = 0.011142447777396005 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011142447777396005 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5602e+04 |  512 |      1 | 3.282e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1221.8427191974533 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.799911407084437, dt = 0.011142447777396005 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.97 us    (0.9%)
   patch tree reduce : 1142.00 ns (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 404.15 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.525390625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.702488398677929e-17,-7.107742129239258e-17,1.2221668989342848e-18)
    sum a = (4.641599604671143e-17,-9.78553175989827e-17,3.3840118207617564e-18)
    sum e = 2.5920015092405375
    sum de = -4.3283383604694747e-19
Info: CFL hydro = 0.011147531028711126 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011147531028711126 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5901e+04 |  512 |      1 | 3.220e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1245.7952543350036 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.811053854861832, dt = 0.011147531028711126 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (1.1%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1013.00 ns (0.2%)
   LB compute        : 390.52 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.521484375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.698390114465934e-17,-7.27518631275792e-17,1.4929463915125396e-18)
    sum a = (-2.1184616560976365e-16,3.977677562327919e-17,1.6966896637660155e-17)
    sum e = 2.592001509447269
    sum de = 9.715467905006825e-19
Info: CFL hydro = 0.011153156098904968 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011153156098904968 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6041e+04 |  512 |      1 | 3.192e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1257.2857173090974 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.822201385890544, dt = 0.011153156098904968 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.12 us    (0.9%)
   patch tree reduce : 1132.00 ns (0.3%)
   gen split merge   : 1052.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 424.05 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.300417444022542e-17,-7.168923657832615e-17,1.6766373445858962e-18)
    sum a = (-1.4455233884880236e-17,4.8962786949879875e-17,-2.655688169372894e-17)
    sum e = 2.5920015094024715
    sum de = -9.486769009248164e-19
Info: CFL hydro = 0.011150400912437155 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011150400912437155 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5882e+04 |  512 |      1 | 3.224e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1245.5144220732375 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.83335454198945, dt = 0.011150400912437155 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.01 us    (1.0%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.2%)
   LB compute        : 371.82 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.408290139173987e-17,-7.08666523900614e-17,1.0611628763201874e-18)
    sum a = (1.52807454190107e-17,-5.855862669768008e-17,-1.7493233424314968e-16)
    sum e = 2.5920015090474324
    sum de = 7.640237184233789e-19
Info: CFL hydro = 0.011147930472807637 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011147930472807637 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6117e+04 |  512 |      1 | 3.177e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1263.6059651884905 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.84450494290189, dt = 0.011147930472807637 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.79 us    (0.9%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 415.02 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4478093083610837e-17,-7.177266593549891e-17,-1.6729781622537577e-18)
    sum a = (7.574214692940284e-17,-4.766890007723568e-17,4.6650183715968295e-17)
    sum e = 2.592001508505863
    sum de = 1.102836897325099e-18
Info: CFL hydro = 0.011145754626270868 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011145754626270868 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6094e+04 |  512 |      1 | 3.181e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1261.5463514206406 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.855652873374698, dt = 0.011145754626270868 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.1%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1001.00 ns (0.2%)
   LB compute        : 428.84 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5725142422403665e-17,-7.272844436065351e-17,-1.3173056395698879e-20)
    sum a = (6.426695113581627e-17,-7.176095655203608e-17,9.80719411930453e-17)
    sum e = 2.5920015078372542
    sum de = -2.337810934421869e-19
Info: CFL hydro = 0.011143879979609288 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011143879979609288 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6103e+04 |  512 |      1 | 3.179e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1261.9957007418645 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.866798628000968, dt = 0.011143879979609288 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.30 us    (1.1%)
   patch tree reduce : 901.00 ns  (0.2%)
   gen split merge   : 672.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 387.74 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6306952413213697e-17,-7.343686206015554e-17,1.368534192219828e-18)
    sum a = (1.2411946470614055e-17,7.148578604065925e-17,-2.4908785971333724e-17)
    sum e = 2.5920015071131517
    sum de = 4.760325163569168e-19
Info: CFL hydro = 0.011142310131691056 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011142310131691056 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6107e+04 |  512 |      1 | 3.179e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1262.0478407238054 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.877942507980578, dt = 0.011142310131691056 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.83 us    (0.9%)
   patch tree reduce : 1223.00 ns (0.3%)
   gen split merge   : 672.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 401.03 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.81 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6124725133073197e-17,-7.182974917988028e-17,4.464202445209064e-19)
    sum a = (8.859758629867209e-17,8.705926604624104e-17,-4.1029679653803443e-17)
    sum e = 2.5920015064110804
    sum de = -8.046812998915853e-19
Info: CFL hydro = 0.011141044531032538 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011141044531032538 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6032e+04 |  512 |      1 | 3.194e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1256.0180400896115 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.88908481811227, dt = 0.011141044531032538 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.1%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 424.89 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.766377722197068e-17,-7.10408294690712e-17,-8.635670303847043e-20)
    sum a = (-9.196988873597101e-17,9.584130364337362e-17,-4.435221721138527e-17)
    sum e = 2.592001505808856
    sum de = -5.89534931288993e-19
Info: CFL hydro = 0.011140078918852426 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011140078918852426 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1886e+04 |  512 |      1 | 4.308e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 931.0771156140632 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.900225862643303, dt = 0.011140078918852426 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (1.1%)
   patch tree reduce : 1914.00 ns (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 399.06 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5548769833994584e-17,-6.976743401748697e-17,-5.649777520821964e-19)
    sum a = (2.8032264010047217e-17,4.52509123921585e-17,7.119597879995388e-17)
    sum e = 2.5920015053788585
    sum de = -7.928228386300251e-19
Info: CFL hydro = 0.011138937874660837 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011138937874660837 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6217e+04 |  512 |      1 | 3.157e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1270.2533196668062 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.911365941562156, dt = 0.011138937874660837 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.86 us    (1.0%)
   patch tree reduce : 1072.00 ns (0.3%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 388.12 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6663356772364e-17,-6.970303240844134e-17,7.230544288305829e-19)
    sum a = (1.6999097442182974e-16,-1.438907586831517e-16,4.621840020077594e-17)
    sum e = 2.5920015051777736
    sum de = -4.573977915173222e-20
Info: CFL hydro = 0.011137731975840035 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011137731975840035 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6301e+04 |  512 |      1 | 3.141e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1276.7152314729935 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.92250487943682, dt = 0.011137731975840035 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.09 us    (1.0%)
   patch tree reduce : 1243.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 378.85 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9141355047688236e-17,-7.230105186425973e-17,1.2046028237400197e-18)
    sum a = (1.1568870861289326e-17,5.28503022595439e-17,-5.3073512381804355e-17)
    sum e = 2.5920015052505976
    sum de = 8.555032767268433e-19
Info: CFL hydro = 0.011136827636346509 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011136827636346509 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6548e+04 |  512 |      1 | 3.094e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1295.8970582739187 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.933642611412658, dt = 0.011136827636346509 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.53 us    (0.9%)
   patch tree reduce : 791.00 ns  (0.2%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 521.00 ns  (0.1%)
   LB compute        : 363.19 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.56 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.845050142338048e-17,-7.051683455910896e-17,4.3178351519235213e-19)
    sum a = (1.0187749081846942e-16,-6.693669056534456e-17,-1.304132583174189e-18)
    sum e = 2.592001505623465
    sum de = 8.656676720938949e-19
Info: CFL hydro = 0.011136222405301521 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011136222405301521 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6451e+04 |  512 |      1 | 3.112e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1288.2076718979858 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.944779439049004, dt = 0.011136222405301521 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.82 us    (1.0%)
   patch tree reduce : 841.00 ns  (0.2%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 692.00 ns  (0.2%)
   LB compute        : 384.00 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.005175961192432e-17,-7.203466339048004e-17,4.054374024009544e-19)
    sum a = (-1.057006045190878e-16,-6.181676264621627e-17,-1.7845100397373413e-17)
    sum e = 2.5920015062965422
    sum de = 7.199780051661553e-19
Info: CFL hydro = 0.011135910109468988 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011135910109468988 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6205e+04 |  512 |      1 | 3.160e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1268.8834544595497 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.955915661454306, dt = 0.011135910109468988 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.01 us    (1.0%)
   patch tree reduce : 1293.00 ns (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 377.94 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.791186978408968e-17,-7.262745092828649e-17,2.927345865710862e-19)
    sum a = (1.179837477716106e-16,-1.191722501930892e-17,7.027386485225496e-17)
    sum e = 2.5920015072458016
    sum de = 1.4086157912839015e-18
Info: CFL hydro = 0.011135881323169153 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011135881323169153 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6085e+04 |  512 |      1 | 3.183e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1259.4717391177073 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.967051571563776, dt = 0.011135881323169153 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.20 us    (1.1%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 370.31 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.029765666464403e-17,-7.25220664771209e-17,1.5105104667068048e-18)
    sum a = (-4.7575225009532926e-17,-3.4100651989665834e-17,-4.5186510783112864e-17)
    sum e = 2.592001508423864
    sum de = 5.573476792933296e-19
Info: CFL hydro = 0.01113612344011076 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01113612344011076 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6220e+04 |  512 |      1 | 3.157e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1269.9810010029207 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.978187452886946, dt = 0.01113612344011076 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (1.1%)
   patch tree reduce : 1232.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 367.87 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 2.90 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.886179351751285e-17,-7.306655280814311e-17,4.34710861058063e-19)
    sum a = (1.89457824428807e-17,2.0558750014887385e-17,1.6657183445067947e-16)
    sum e = 2.59200150976276
    sum de = 3.6591823321385775e-19
Info: CFL hydro = 0.011136620878347884 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011136620878347884 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6249e+04 |  512 |      1 | 3.151e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1272.3135634854325 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.989323576327056, dt = 0.010676423672943969 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.89 us    (1.0%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 384.23 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 2.77 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.939164311920652e-17,-7.278552760503487e-17,3.151287824437743e-18)
    sum a = (3.828968392349807e-17,1.8017813803450356e-18,6.13396052701054e-17)
    sum e = 2.592001507172272
    sum de = 2.964615315390051e-19
Info: CFL hydro = 0.011137328835693515 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011137328835693515 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4895e+04 |  512 |      1 | 3.437e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1118.116897209051 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 2068                                                    [SPH][rank=0]
Info: time since start : 805.1813545260001 (s)                                        [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14990494290780457 max=0.15011581312474148 delta=0.00021087021693691477
Number of particle pairs: 130816
Distance min=0.129508 max=1.979129 mean=0.800578
---------------- t = 19, dt = 0.011137328835693515 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.04 us   (1.4%)
   patch tree reduce : 1443.00 ns (0.2%)
   gen split merge   : 641.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.1%)
   LB compute        : 703.80 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 5.17 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (76.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.003126819086434e-17,-7.262452358242077e-17,3.274236350797599e-18)
    sum a = (3.1287472612717695e-17,-2.196241235749574e-17,4.371112846679459e-17)
    sum e = 2.592001512430216
    sum de = 7.487771253728015e-19
Info: CFL hydro = 0.011138263548059446 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011138263548059446 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4153e+04 |  512 |      1 | 3.618e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1108.332380112202 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.011137328835694, dt = 0.011138263548059446 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (0.8%)
   patch tree reduce : 852.00 ns  (0.2%)
   gen split merge   : 571.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 731.00 ns  (0.2%)
   LB compute        : 381.77 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.39 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.020837261573985e-17,-7.313095441718875e-17,3.722120268251361e-18)
    sum a = (3.5666782027821144e-17,2.7024891114009464e-17,6.469434363221005e-17)
    sum e = 2.592001513763884
    sum de = 1.5861750728520842e-18
Info: CFL hydro = 0.011139400363843645 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011139400363843645 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4665e+04 |  512 |      1 | 3.491e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1148.4694574613247 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.022275592383753, dt = 0.011139400363843645 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.32 us    (0.8%)
   patch tree reduce : 491.00 ns  (0.1%)
   gen split merge   : 381.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 351.00 ns  (0.1%)
   LB compute        : 383.68 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.21 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.057575452188656e-17,-7.253084851471803e-17,4.715954189660199e-18)
    sum a = (6.701280155785305e-17,1.2477958119885835e-16,-1.0369829994694157e-16)
    sum e = 2.5920015148568982
    sum de = -2.1091120386632078e-19
Info: CFL hydro = 0.01114070683285921 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01114070683285921 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5991e+04 |  512 |      1 | 3.202e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1252.4617491957479 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.0334149927476, dt = 0.01114070683285921 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.41 us    (0.7%)
   patch tree reduce : 1833.00 ns (0.3%)
   gen split merge   : 741.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.1%)
   LB compute        : 642.42 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1667654529796715e-17,-7.047877906285472e-17,2.6638847377968844e-18)
    sum a = (-8.345277593968525e-17,6.881897395699665e-17,-6.071315325484328e-17)
    sum e = 2.5920015156695073
    sum de = -1.5331296345302836e-19
Info: CFL hydro = 0.01114215675205161 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01114215675205161 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4798e+04 |  512 |      1 | 3.460e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1159.1439306316477 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.044555699580457, dt = 0.01114215675205161 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.59 us    (0.9%)
   patch tree reduce : 942.00 ns  (0.2%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 511.00 ns  (0.1%)
   LB compute        : 365.34 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.84 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9843918055458845e-17,-7.041730479967479e-17,2.119398406774664e-18)
    sum a = (5.731743205061867e-17,-3.123331671420204e-17,-2.170334224838033e-17)
    sum e = 2.5920015161393053
    sum de = -9.402065714522734e-20
Info: CFL hydro = 0.011143722890353704 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011143722890353704 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6122e+04 |  512 |      1 | 3.176e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1263.045760153084 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.055697856332507, dt = 0.011143722890353704 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 us    (1.0%)
   patch tree reduce : 871.00 ns  (0.2%)
   gen split merge   : 692.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 382.97 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1170005732625865e-17,-7.098520989762269e-17,2.176481651156026e-18)
    sum a = (5.098265559722037e-17,-1.1984261239633699e-16,2.343047630914974e-17)
    sum e = 2.5920015162285046
    sum de = -1.2197274440461925e-19
Info: CFL hydro = 0.011142210865419675 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011142210865419675 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6232e+04 |  512 |      1 | 3.154e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1271.8343960994553 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.06684157922286, dt = 0.011142210865419675 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.23 us    (1.0%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 391.64 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 18.70 us   (94.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.178767571029086e-17,-7.300215119909748e-17,2.7436549126375054e-18)
    sum a = (2.2294666113253925e-17,-2.265765700060207e-18,-4.3599889323897576e-17)
    sum e = 2.5920015158986587
    sum de = -2.010856216781709e-18
Info: CFL hydro = 0.011140416062139006 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011140416062139006 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5962e+04 |  512 |      1 | 3.208e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1250.5494187944946 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.07798379008828, dt = 0.011140416062139006 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.05 us    (1.0%)
   patch tree reduce : 1312.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 405.14 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.190476954491929e-17,-7.236984449210393e-17,1.913752359708476e-18)
    sum a = (7.537330135032328e-17,-7.395939329718492e-17,5.3418207357491806e-17)
    sum e = 2.592001515196983
    sum de = -7.945169045245337e-19
Info: CFL hydro = 0.011138733648065911 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011138733648065911 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6283e+04 |  512 |      1 | 3.144e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1275.4797920998649 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.08912420615042, dt = 0.011138733648065911 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.71 us    (0.8%)
   patch tree reduce : 751.00 ns  (0.2%)
   gen split merge   : 681.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1904.00 ns (0.4%)
   LB compute        : 445.48 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.294690467311236e-17,-7.356859262411252e-17,2.5504500855005885e-18)
    sum a = (1.2120382822389252e-16,6.319261520310038e-17,-6.866382462611398e-17)
    sum e = 2.5920015141776376
    sum de = 6.335806445462167e-19
Info: CFL hydro = 0.011137185475289607 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011137185475289607 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5902e+04 |  512 |      1 | 3.220e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1245.4533682105703 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.100262939798487, dt = 0.011137185475289607 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.89 us    (1.0%)
   patch tree reduce : 532.00 ns  (0.1%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 551.00 ns  (0.1%)
   LB compute        : 378.52 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.443106902702777e-17,-7.201563564235291e-17,1.1460559064258024e-18)
    sum a = (2.2224409812476865e-17,1.6163632932109094e-16,-8.969387732538081e-17)
    sum e = 2.5920015129184977
    sum de = 1.3044307387716225e-19
Info: CFL hydro = 0.01113579250154289 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01113579250154289 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5406e+04 |  512 |      1 | 3.323e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1206.4367652223275 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.111400125273775, dt = 0.01113579250154289 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.2%)
   patch tree reduce : 2.05 us    (0.4%)
   gen split merge   : 1262.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 451.91 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.88 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.41705352449795e-17,-6.979524380321122e-17,-5.122855264994008e-20)
    sum a = (2.800884524312153e-17,7.412039731979902e-17,-8.807212771577699e-17)
    sum e = 2.5920015115188417
    sum de = -1.153658874160357e-18
Info: CFL hydro = 0.011134373439961072 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011134373439961072 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5967e+04 |  512 |      1 | 3.207e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1250.2211263025922 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.122535917775316, dt = 0.011134373439961072 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (1.1%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 406.61 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.464476527522466e-17,-6.934443253989176e-17,-8.858880426107497e-19)
    sum a = (-3.617028551672341e-17,1.701666151737724e-16,9.299006877017124e-17)
    sum e = 2.592001510091501
    sum de = -5.709002064493984e-19
Info: CFL hydro = 0.01113285218955637 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01113285218955637 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6297e+04 |  512 |      1 | 3.142e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1275.8762357737764 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.133670291215278, dt = 0.01113285218955637 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (0.8%)
   patch tree reduce : 571.00 ns  (0.2%)
   gen split merge   : 592.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 512.00 ns  (0.1%)
   LB compute        : 364.21 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.58 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.40095312223654e-17,-6.72572349376399e-17,1.1822818115139743e-18)
    sum a = (1.7602716159692556e-16,-2.1117873075238157e-17,-3.127576322925485e-17)
    sum e = 2.592001508756991
    sum de = -1.6991480921921265e-18
Info: CFL hydro = 0.011131551674047713 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011131551674047713 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6026e+04 |  512 |      1 | 3.195e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1254.4442402011143 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.144803143404836, dt = 0.011131551674047713 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (0.8%)
   patch tree reduce : 561.00 ns  (0.1%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 431.00 ns  (0.1%)
   LB compute        : 413.52 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.37 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.71359366069446e-17,-6.827009660717586e-17,1.306328092573472e-19)
    sum a = (7.445411474849006e-17,-1.430008455399756e-16,-2.3594407677629548e-18)
    sum e = 2.5920015076373972
    sum de = -2.270048298641525e-18
Info: CFL hydro = 0.011130493529823638 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011130493529823638 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6249e+04 |  512 |      1 | 3.151e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1271.8150889394856 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.155934695078884, dt = 0.011130493529823638 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.81 us    (0.9%)
   patch tree reduce : 601.00 ns  (0.1%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 661.00 ns  (0.2%)
   LB compute        : 395.80 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.52 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.723546636637877e-17,-7.07876140516872e-17,4.1458535823130084e-19)
    sum a = (-9.437763071051819e-18,7.078907772462006e-17,-1.1358687428131287e-16)
    sum e = 2.592001506840377
    sum de = 1.7279472123987727e-19
Info: CFL hydro = 0.011129696031095308 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011129696031095308 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6223e+04 |  512 |      1 | 3.156e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1269.6547003932528 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.167065188608706, dt = 0.011129696031095308 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.57 us    (0.8%)
   patch tree reduce : 752.00 ns  (0.2%)
   gen split merge   : 991.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 406.56 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.675830899026791e-17,-6.887605720137802e-17,-1.7629940476243668e-18)
    sum a = (1.0482825545110596e-17,3.754028338187609e-17,-2.941397125866274e-17)
    sum e = 2.5920015064543445
    sum de = -2.541098841762901e-20
Info: CFL hydro = 0.011129174334562874 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011129174334562874 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6262e+04 |  512 |      1 | 3.148e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1272.6256524081705 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.1781948846398, dt = 0.011129174334562874 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.43 us    (0.8%)
   patch tree reduce : 701.00 ns  (0.2%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 701.00 ns  (0.2%)
   LB compute        : 403.11 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.83 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.67056167646851e-17,-6.83344982162215e-17,-1.5734484028195882e-18)
    sum a = (-2.4715581144196806e-17,1.0133300448744719e-16,-1.3654312056021744e-16)
    sum e = 2.5920015065401656
    sum de = 3.7438856268640075e-19
Info: CFL hydro = 0.011128940044367602 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011128940044367602 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6180e+04 |  512 |      1 | 3.164e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1266.1476008984898 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.189324058974364, dt = 0.011128940044367602 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (0.8%)
   patch tree reduce : 511.00 ns  (0.1%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 431.00 ns  (0.1%)
   LB compute        : 377.70 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.32 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.641873686984544e-17,-6.70669574563687e-17,-3.5055881537470604e-18)
    sum a = (-3.492579760556308e-17,2.686718035549429e-17,3.6826010990642645e-18)
    sum e = 2.5920015071264224
    sum de = 8.809142651444724e-19
Info: CFL hydro = 0.011129000991747805 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011129000991747805 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5884e+04 |  512 |      1 | 3.223e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1242.9033137325066 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.200452999018733, dt = 0.011129000991747805 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.25 us    (0.9%)
   patch tree reduce : 451.00 ns  (0.1%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 421.00 ns  (0.1%)
   LB compute        : 367.74 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.44 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.593865214786886e-17,-6.729236308802844e-17,-2.513949741737506e-18)
    sum a = (6.805493668604612e-17,1.542945458898881e-16,-9.109900334092203e-18)
    sum e = 2.5920015082062364
    sum de = -1.0401564592282808e-18
Info: CFL hydro = 0.011129361031825371 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011129361031825371 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6354e+04 |  512 |      1 | 3.131e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1279.678582700363 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.21158200001048, dt = 0.011129361031825371 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (0.9%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 420.00 ns  (0.1%)
   LB compute        : 362.60 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.11 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.732914143408152e-17,-6.479533706457707e-17,-2.7283778264008267e-18)
    sum a = (2.047678433064748e-17,-9.513874063560301e-17,1.4382635707410608e-16)
    sum e = 2.5920015097368085
    sum de = 9.910285482875314e-19
Info: CFL hydro = 0.011130020009130387 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011130020009130387 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6189e+04 |  512 |      1 | 3.163e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1266.8125511746287 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.222711361042307, dt = 0.011130020009130387 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (0.9%)
   patch tree reduce : 531.00 ns  (0.1%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 331.00 ns  (0.1%)
   LB compute        : 356.32 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.21 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.708324438136181e-17,-6.722942515191566e-17,-4.734067142204284e-19)
    sum a = (1.6009069070399562e-16,6.995771149875818e-17,-7.192781526638159e-17)
    sum e = 2.5920015116405555
    sum de = 5.293955920339377e-19
Info: CFL hydro = 0.011130973573194074 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011130973573194074 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6294e+04 |  512 |      1 | 3.142e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1275.1126711204106 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.233841381051437, dt = 0.011130973573194074 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.26 us    (0.8%)
   patch tree reduce : 791.00 ns  (0.2%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 401.00 ns  (0.1%)
   LB compute        : 379.51 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.19 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.96417446679931e-17,-6.532079564747217e-17,-2.3953007546179127e-18)
    sum a = (2.6668120836625952e-17,1.4595746486434356e-17,-4.549680944487822e-17)
    sum e = 2.5920015138096297
    sum de = -8.919256934587783e-19
Info: CFL hydro = 0.011132212884686082 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011132212884686082 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6315e+04 |  512 |      1 | 3.138e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1276.852360193778 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.244972354624633, dt = 0.011132212884686082 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (0.7%)
   patch tree reduce : 481.00 ns  (0.1%)
   gen split merge   : 411.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 421.00 ns  (0.1%)
   LB compute        : 409.21 us  (97.6%)
   LB move op cnt    : 0
   LB apply          : 2.15 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.915873260015081e-17,-6.55008274182134e-17,-2.8214125371954503e-18)
    sum a = (9.286712024381139e-17,-1.3073526636264709e-17,-5.309034462053219e-17)
    sum e = 2.5920015161135748
    sum de = 6.818615225397118e-19
Info: CFL hydro = 0.011133724714519599 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011133724714519599 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6244e+04 |  512 |      1 | 3.152e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1271.4459164020084 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.25610456750932, dt = 0.011133724714519599 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (0.8%)
   patch tree reduce : 501.00 ns  (0.1%)
   gen split merge   : 391.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 310.00 ns  (0.1%)
   LB compute        : 391.70 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 2.01 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.066046102926048e-17,-6.599847621538423e-17,-3.3271115354970016e-18)
    sum a = (1.350443194769735e-16,-3.5546760847326996e-17,-4.338619307570068e-17)
    sum e = 2.5920015184077494
    sum de = 1.1286714022163552e-18
Info: CFL hydro = 0.011135491732227776 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011135491732227776 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6303e+04 |  512 |      1 | 3.140e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1276.2997172519329 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.267238292223837, dt = 0.011135491732227776 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (0.8%)
   patch tree reduce : 460.00 ns  (0.1%)
   gen split merge   : 411.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 331.00 ns  (0.1%)
   LB compute        : 364.76 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 1963.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.253688972918115e-17,-6.668493882089343e-17,-3.905445303091504e-18)
    sum a = (3.028046563491316e-17,-1.289056751965778e-16,-1.5220442094177055e-16)
    sum e = 2.5920015205433398
    sum de = 1.5009423825346202e-18
Info: CFL hydro = 0.011137492815960518 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011137492815960518 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6451e+04 |  512 |      1 | 3.112e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1288.0436278126351 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.278373783956066, dt = 0.011137492815960518 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (0.9%)
   patch tree reduce : 511.00 ns  (0.1%)
   gen split merge   : 411.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 521.00 ns  (0.1%)
   LB compute        : 366.45 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.07 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.225293718020719e-17,-6.828473333650443e-17,-5.9919110688769206e-18)
    sum a = (8.347619470661094e-17,-1.1247448285234274e-16,1.0225036149811434e-16)
    sum e = 2.5920015223780006
    sum de = 3.2695471764015993e-19
Info: CFL hydro = 0.011139703504197716 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011139703504197716 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6385e+04 |  512 |      1 | 3.125e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1283.1441233227865 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.28951127677203, dt = 0.011139703504197716 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.45 us    (0.8%)
   patch tree reduce : 902.00 ns  (0.2%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 601.00 ns  (0.1%)
   LB compute        : 395.06 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.38 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.330385434599739e-17,-6.931223173536894e-17,-3.3605930538360694e-18)
    sum a = (3.095960987575808e-17,6.924929379925615e-17,-5.574398364779909e-18)
    sum e = 2.5920015237868714
    sum de = -1.4831546906422799e-18
Info: CFL hydro = 0.011142095899420371 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011142095899420371 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6247e+04 |  512 |      1 | 3.151e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1272.5451334185605 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.300650980276227, dt = 0.011142095899420371 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.76 us    (0.9%)
   patch tree reduce : 882.00 ns  (0.2%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 701.00 ns  (0.2%)
   LB compute        : 395.90 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.78 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.330092700013167e-17,-6.792466979502199e-17,-4.32625127128744e-18)
    sum a = (-8.655576255733877e-17,-2.316042865303791e-17,9.47289122144035e-17)
    sum e = 2.592001524672713
    sum de = -5.819116347637043e-19
Info: CFL hydro = 0.011144639240254689 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011144639240254689 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6155e+04 |  512 |      1 | 3.169e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1265.6656850929678 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.311793076175647, dt = 0.011144639240254689 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.45 us    (0.8%)
   patch tree reduce : 691.00 ns  (0.2%)
   gen split merge   : 571.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 581.00 ns  (0.1%)
   LB compute        : 414.50 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.79 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.179334387929058e-17,-6.841792757339426e-17,-2.5184322400943758e-18)
    sum a = (-3.4589518749239543e-17,3.076384362098866e-17,7.715166396374262e-17)
    sum e = 2.592001524972425
    sum de = 1.3730404074992208e-18
Info: CFL hydro = 0.01114730029047776 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01114730029047776 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5981e+04 |  512 |      1 | 3.204e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1252.2723184273357 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.3229377154159, dt = 0.01114730029047776 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (0.8%)
   patch tree reduce : 672.00 ns  (0.2%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 431.00 ns  (0.1%)
   LB compute        : 371.18 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.38 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.165283127773647e-17,-6.804322730258327e-17,-1.8035194919528012e-18)
    sum a = (-3.677917345679127e-17,7.058562718695316e-17,1.9373174939274485e-17)
    sum e = 2.5920015246633348
    sum de = -9.520650327138336e-19
Info: CFL hydro = 0.011150043975040045 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011150043975040045 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6289e+04 |  512 |      1 | 3.143e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1276.7536897452337 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.33408501570638, dt = 0.011150043975040045 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.62 us    (0.9%)
   patch tree reduce : 611.00 ns  (0.2%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 321.00 ns  (0.1%)
   LB compute        : 378.48 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.13 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.113469105950563e-17,-6.67025028960877e-17,-1.7017027435610455e-18)
    sum a = (6.855844017494839e-17,-2.342023059861975e-17,-4.213914373690786e-17)
    sum e = 2.592001523765794
    sum de = -6.2511031507367365e-19
Info: CFL hydro = 0.011152834198552354 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011152834198552354 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6153e+04 |  512 |      1 | 3.170e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1266.3667415844727 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.345235059681418, dt = 0.011152834198552354 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.77 us    (1.0%)
   patch tree reduce : 941.00 ns  (0.2%)
   gen split merge   : 582.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 601.00 ns  (0.2%)
   LB compute        : 380.14 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.62 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.266862029313813e-17,-6.757192461820383e-17,-2.911748601020121e-18)
    sum a = (4.1931302180442386e-17,2.316116048950434e-17,3.9440130848722445e-17)
    sum e = 2.592001522344539
    sum de = -3.049318610115481e-19
Info: CFL hydro = 0.01115563374773413 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01115563374773413 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6219e+04 |  512 |      1 | 3.157e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1271.8881051658439 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.35638789387997, dt = 0.01115563374773413 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (0.9%)
   patch tree reduce : 681.00 ns  (0.2%)
   gen split merge   : 401.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 631.00 ns  (0.2%)
   LB compute        : 357.61 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.20 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.281498758642367e-17,-6.722064311431852e-17,-1.6535387561142714e-18)
    sum a = (-7.323048417662292e-17,3.836579491600656e-17,5.586546850122609e-17)
    sum e = 2.592001520503565
    sum de = 4.2521053952165877e-19
Info: CFL hydro = 0.011158405510664458 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011158405510664458 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6317e+04 |  512 |      1 | 3.138e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1279.8842264821765 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.367543527627703, dt = 0.011158405510664458 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (0.8%)
   patch tree reduce : 551.00 ns  (0.1%)
   gen split merge   : 421.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 341.00 ns  (0.1%)
   LB compute        : 375.79 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.06 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.140400687915104e-17,-6.62297365387754e-17,-1.0715915459667825e-18)
    sum a = (-1.5716334483828476e-16,-8.541117032384582e-17,1.4139080531383463e-17)
    sum e = 2.5920015183799205
    sum de = -1.1045309632196076e-18
Info: CFL hydro = 0.011160678847350477 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011160678847350477 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6113e+04 |  512 |      1 | 3.178e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1264.205654823988 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.378701933138366, dt = 0.011160678847350477 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (0.8%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 411.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 341.00 ns  (0.1%)
   LB compute        : 377.63 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.13 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.897138246474531e-17,-6.828912435530299e-17,-1.3132805390045355e-18)
    sum a = (2.32314167902814e-17,1.4741528310546758e-16,-8.234623920244655e-17)
    sum e = 2.5920015161320236
    sum de = 9.723938234479368e-19
Info: CFL hydro = 0.011160318035409202 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011160318035409202 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6309e+04 |  512 |      1 | 3.139e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1279.84397181806 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 19.389862611985716, dt = 0.011160318035409202 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (0.8%)
   patch tree reduce : 592.00 ns  (0.2%)
   gen split merge   : 401.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 351.00 ns  (0.1%)
   LB compute        : 371.55 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 1913.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.039846357427936e-17,-6.527542178655365e-17,-2.6298543421079957e-18)
    sum a = (-1.0126274818667014e-16,3.0385850086078747e-18,-6.819544928760024e-17)
    sum e = 2.592001513920332
    sum de = 1.5178830414797062e-18
Info: CFL hydro = 0.011160035012799788 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011160035012799788 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6321e+04 |  512 |      1 | 3.137e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1280.7152409559992 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.401022930021124, dt = 0.011160035012799788 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (0.8%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 330.00 ns  (0.1%)
   LB compute        : 395.71 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.08 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.872109439322703e-17,-6.61375251440055e-17,-3.2698453319990327e-18)
    sum a = (-1.953944818444686e-16,-3.3875246358006097e-17,-5.251658483085287e-18)
    sum e = 2.5920015119450666
    sum de = 1.1553529400548657e-18
Info: CFL hydro = 0.011159842204664431 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011159842204664431 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6578e+04 |  512 |      1 | 3.088e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1300.8331783843246 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.412182965033924, dt = 0.011159842204664431 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 us    (0.8%)
   patch tree reduce : 501.00 ns  (0.1%)
   gen split merge   : 400.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 331.00 ns  (0.1%)
   LB compute        : 357.13 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 1954.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.56122530838421e-17,-6.682545142244756e-17,-2.976012990728305e-18)
    sum a = (-6.039114520961508e-17,4.665896575356543e-17,-6.751630504675532e-17)
    sum e = 2.5920015103703093
    sum de = -1.3891340334970526e-19
Info: CFL hydro = 0.011159749768565874 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011159749768565874 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6350e+04 |  512 |      1 | 3.132e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1282.932964201492 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.42334280723859, dt = 0.011159749768565874 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (0.7%)
   patch tree reduce : 491.00 ns  (0.1%)
   gen split merge   : 421.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 521.00 ns  (0.1%)
   LB compute        : 439.59 us  (97.7%)
   LB move op cnt    : 0
   LB apply          : 2.23 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.594157949373458e-17,-6.570574162881315e-17,-4.135973790016234e-18)
    sum a = (1.7368528490435686e-16,7.933692765249578e-17,-4.539727968544405e-17)
    sum e = 2.592001509335912
    sum de = 1.6940658945086007e-19
Info: CFL hydro = 0.011159765384538896 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011159765384538896 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6106e+04 |  512 |      1 | 3.179e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1263.7893204022228 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.434502557007157, dt = 0.011159765384538896 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (0.8%)
   patch tree reduce : 491.00 ns  (0.1%)
   gen split merge   : 411.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 381.00 ns  (0.1%)
   LB compute        : 373.44 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.18 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.904602978432093e-17,-6.459188652691017e-17,-4.452493061746221e-18)
    sum a = (2.0896272993203845e-16,-1.0873333483596426e-16,1.2365108936762681e-17)
    sum e = 2.592001508946389
    sum de = 3.1848438816761693e-19
Info: CFL hydro = 0.011159893792356303 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011159893792356303 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6504e+04 |  512 |      1 | 3.102e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1295.0125651783676 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.445662322391694, dt = 0.011159893792356303 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (0.8%)
   patch tree reduce : 521.00 ns  (0.1%)
   gen split merge   : 401.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 331.00 ns  (0.1%)
   LB compute        : 375.39 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 2.07 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.151817336791376e-17,-6.68635069187018e-17,-3.932889170582543e-18)
    sum a = (-1.9651272796517017e-17,-8.157341989389887e-17,1.5327582952862072e-17)
    sum e = 2.59200150926331
    sum de = -1.3586408473958977e-18
Info: CFL hydro = 0.011160137096886489 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011160137096886489 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6357e+04 |  512 |      1 | 3.130e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1283.5055334925 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 19.45682221618405, dt = 0.011160137096886489 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.32 us    (0.9%)
   patch tree reduce : 612.00 ns  (0.2%)
   gen split merge   : 391.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 440.00 ns  (0.1%)
   LB compute        : 376.65 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.29 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.006474614558832e-17,-6.749434995276249e-17,-3.639422747545029e-18)
    sum a = (4.90531687534837e-17,1.0201800342002354e-16,4.099455150341491e-17)
    sum e = 2.592001510300226
    sum de = -8.300922883092143e-19
Info: CFL hydro = 0.011160494428075688 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011160494428075688 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6206e+04 |  512 |      1 | 3.159e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1271.711141680712 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.467982353280938, dt = 0.011160494428075688 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.52 us    (0.9%)
   patch tree reduce : 481.00 ns  (0.1%)
   gen split merge   : 441.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 391.00 ns  (0.1%)
   LB compute        : 362.25 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.04 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.102637926247434e-17,-6.578477996718734e-17,-3.387671003093895e-18)
    sum a = (1.399666515501663e-16,-2.482389294122811e-18,9.397951167278151e-17)
    sum e = 2.592001512019835
    sum de = -8.809142651444724e-20
Info: CFL hydro = 0.011160961856716412 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011160961856716412 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6207e+04 |  512 |      1 | 3.159e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1271.7913915500042 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.479142847709014, dt = 0.011160961856716412 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (0.8%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 611.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 511.00 ns  (0.1%)
   LB compute        : 375.23 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.14 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.298038262783633e-17,-6.610971535828125e-17,-2.1267167714389413e-18)
    sum a = (-1.7944630156807582e-18,-2.3345290544457553e-16,2.1357915436226448e-17)
    sum e = 2.5920015143364057
    sum de = -3.5914196963582334e-19
Info: CFL hydro = 0.011161532584942235 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011161532584942235 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6023e+04 |  512 |      1 | 3.195e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1257.391583080274 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.49030380956573, dt = 0.00969619043426917 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.59 us    (0.9%)
   patch tree reduce : 500.00 ns  (0.1%)
   gen split merge   : 571.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 511.00 ns  (0.1%)
   LB compute        : 382.46 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.10 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.234368490204423e-17,-6.972937852123273e-17,-2.3169942527101472e-18)
    sum a = (-1.9953374889858378e-16,-1.6152801752405966e-16,5.063137409333507e-17)
    sum e = 2.5920015063539084
    sum de = -2.998496633280223e-19
Info: CFL hydro = 0.011162114622940035 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011162114622940035 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5947e+04 |  512 |      1 | 3.211e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1087.2184498635868 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 2113                                                    [SPH][rank=0]
Info: time since start : 807.4024194640001 (s)                                        [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14992041954136753 max=0.1500809323944793 delta=0.0001605128531117772
Number of particle pairs: 130816
Distance min=0.128878 max=1.939100 mean=0.800580
---------------- t = 19.5, dt = 0.011162114622940035 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.48 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.2%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 646.49 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 4.65 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.20 us    (79.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.909140364523946e-17,-7.102912008560836e-17,-1.5602753464238894e-18)
    sum a = (3.298533321482999e-17,-1.7750839860497524e-16,-1.3875619403469486e-17)
    sum e = 2.592001519370962
    sum de = -7.928228386300251e-19
Info: CFL hydro = 0.011162840892252496 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011162840892252496 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5326e+04 |  512 |      1 | 3.341e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1202.879138086286 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.51116211462294, dt = 0.011162840892252496 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.26 us    (1.0%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 388.17 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.090782175491305e-17,-7.306216178934455e-17,-1.7681169028893606e-18)
    sum a = (1.5713407137962765e-16,3.5409175591638585e-17,-1.0444770048856355e-17)
    sum e = 2.5920015227585127
    sum de = -1.3891340334970526e-19
Info: CFL hydro = 0.01116364575816281 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01116364575816281 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5743e+04 |  512 |      1 | 3.252e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1235.6438150961694 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.522324955515195, dt = 0.01116364575816281 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.29 us    (1.0%)
   patch tree reduce : 1984.00 ns (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 408.12 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.325262579334745e-17,-7.18356038716117e-17,-1.8866744104506504e-18)
    sum a = (-8.170222311199015e-17,4.957167488994774e-17,2.6264147107157854e-17)
    sum e = 2.5920015258911926
    sum de = -1.7220179817679926e-18
Info: CFL hydro = 0.011164502959893349 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011164502959893349 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5937e+04 |  512 |      1 | 3.213e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1250.9475606360504 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.53348860127336, dt = 0.011164502959893349 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.96 us    (1.0%)
   patch tree reduce : 932.00 ns  (0.2%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1033.00 ns (0.3%)
   LB compute        : 391.84 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 2.87 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (73.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.108785352565427e-17,-7.079493241635148e-17,-1.3875619403469486e-18)
    sum a = (-6.937809701734743e-17,6.656199029453358e-17,2.173261570703744e-17)
    sum e = 2.5920015287651013
    sum de = 6.098637220230962e-20
Info: CFL hydro = 0.011165394225118645 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011165394225118645 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6071e+04 |  512 |      1 | 3.186e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1261.5943816283557 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.54465310423325, dt = 0.011165394225118645 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.47 us    (0.9%)
   patch tree reduce : 782.00 ns  (0.2%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 411.00 ns  (0.1%)
   LB compute        : 384.24 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.44 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.019208569074674e-17,-6.968693200617993e-17,-1.208993842538586e-18)
    sum a = (-8.1227993081745e-17,-5.123733468753722e-17,-6.526810342188937e-17)
    sum e = 2.592001531195569
    sum de = 2.5766742255475816e-18
Info: CFL hydro = 0.011166299695205599 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011166299695205599 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6676e+04 |  512 |      1 | 3.070e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1309.1601991969999 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.555818498458372, dt = 0.011166299695205599 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.91 us    (1.0%)
   patch tree reduce : 621.00 ns  (0.2%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 741.00 ns  (0.2%)
   LB compute        : 381.83 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (73.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.921435217159931e-17,-7.109937638638541e-17,-2.8307434521424033e-18)
    sum a = (-5.7891191840298e-17,2.2623260686679968e-17,8.574781509840257e-17)
    sum e = 2.5920015330262216
    sum de = -2.035843688725711e-18
Info: CFL hydro = 0.011166916890029367 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011166916890029367 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6027e+04 |  512 |      1 | 3.195e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1258.325927729405 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.566984798153577, dt = 0.011166916890029367 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.96 us    (1.0%)
   patch tree reduce : 1192.00 ns (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 396.81 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.879281436693695e-17,-7.077736834115723e-17,-7.479368686891253e-19)
    sum a = (9.96351438853349e-17,-5.583729279726862e-17,-5.679050979479072e-19)
    sum e = 2.592001534137295
    sum de = 1.1215775012831004e-18
Info: CFL hydro = 0.011167028940667243 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011167028940667243 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5932e+04 |  512 |      1 | 3.214e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1250.9178109436837 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.578151715043607, dt = 0.011167028940667243 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (1.1%)
   patch tree reduce : 1243.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 395.65 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.058142269088629e-17,-7.157214274369771e-17,-1.1928934402771762e-18)
    sum a = (1.1170751823552649e-16,-1.0602480807371529e-17,1.2646134139870924e-17)
    sum e = 2.592001534458547
    sum de = -1.5028482066659424e-18
Info: CFL hydro = 0.011167037483041544 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011167037483041544 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5999e+04 |  512 |      1 | 3.200e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1256.1940681378828 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.589318743984276, dt = 0.011167037483041544 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.57 us    (0.9%)
   patch tree reduce : 631.00 ns  (0.2%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 702.00 ns  (0.2%)
   LB compute        : 380.24 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.180505326275343e-17,-7.183706754454456e-17,-1.2324126094642728e-18)
    sum a = (1.0187163612673799e-18,9.141881587675094e-17,6.173772430784207e-17)
    sum e = 2.5920015339793556
    sum de = 5.713237229230256e-19
Info: CFL hydro = 0.011166933271118252 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011166933271118252 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6382e+04 |  512 |      1 | 3.125e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1286.2695552937741 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.600485781467317, dt = 0.011166933271118252 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.2%)
   patch tree reduce : 892.00 ns  (0.2%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 385.46 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.131618650317972e-17,-7.006309594992377e-17,-1.844227895397843e-19)
    sum a = (9.495139050019751e-17,-4.875348172048155e-17,-4.059057777394681e-17)
    sum e = 2.5920015327404338
    sum de = 3.7862372742267225e-19
Info: CFL hydro = 0.011166708749011163 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011166708749011163 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5919e+04 |  512 |      1 | 3.216e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1249.902210732763 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.611652714738433, dt = 0.011166708749011163 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.2%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 379.87 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.280327820296084e-17,-7.15560423414363e-17,-8.913768161089575e-19)
    sum a = (-5.467111138801606e-17,2.1376943184353568e-17,-1.8304108229116879e-16)
    sum e = 2.592001530837072
    sum de = -9.961107459710572e-19
Info: CFL hydro = 0.011166358089030893 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011166358089030893 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6535e+04 |  512 |      1 | 3.097e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1298.222662252603 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.622819423487446, dt = 0.011166358089030893 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.47 us    (0.9%)
   patch tree reduce : 871.00 ns  (0.2%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 491.00 ns  (0.1%)
   LB compute        : 375.94 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.138937014982248e-17,-7.072760346144013e-17,-4.2300147759521956e-18)
    sum a = (5.6790509794790725e-18,7.244595548461241e-17,5.522730710250112e-17)
    sum e = 2.592001528410056
    sum de = -6.157929526538763e-19
Info: CFL hydro = 0.011165877290989421 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011165877290989421 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6531e+04 |  512 |      1 | 3.097e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1297.8867372847806 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.633985781576477, dt = 0.011165877290989421 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (0.8%)
   patch tree reduce : 641.00 ns  (0.2%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 330.00 ns  (0.1%)
   LB compute        : 378.63 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.49 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (72.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.180505326275343e-17,-7.000162168674384e-17,-1.8969201209806384e-18)
    sum a = (-7.238740856729819e-17,-3.7440753622441926e-18,1.3623867659018352e-17)
    sum e = 2.5920015256386337
    sum de = -1.145188544687814e-18
Info: CFL hydro = 0.011165264427698239 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011165264427698239 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6276e+04 |  512 |      1 | 3.146e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1277.8175268865907 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.645151658867466, dt = 0.011165264427698239 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.70 us    (0.9%)
   patch tree reduce : 661.00 ns  (0.2%)
   gen split merge   : 672.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 721.00 ns  (0.2%)
   LB compute        : 387.86 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.90 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.053165781116921e-17,-6.983329929946546e-17,-2.1340351361032184e-18)
    sum a = (-3.680259222371696e-17,-8.409971937600735e-17,-6.175236103717063e-17)
    sum e = 2.592001522724984
    sum de = 4.2182240773264157e-19
Info: CFL hydro = 0.011164520224450773 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011164520224450773 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6393e+04 |  512 |      1 | 3.123e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1286.9452730058963 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.656316923295165, dt = 0.011164520224450773 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.95 us    (1.0%)
   patch tree reduce : 1472.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 373.29 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.04233460141379e-17,-7.128233550299234e-17,-3.2815547154618762e-18)
    sum a = (1.7821681630447728e-17,-8.798430733980566e-17,-2.6255365069560722e-17)
    sum e = 2.592001519883295
    sum de = -1.5670109524204556e-18
Info: CFL hydro = 0.011163647906974078 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011163647906974078 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6343e+04 |  512 |      1 | 3.133e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1282.9022455687407 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.667481443519616, dt = 0.011163647906974078 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.66 us    (1.0%)
   patch tree reduce : 1011.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 681.00 ns  (0.2%)
   LB compute        : 367.17 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 2.99 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.07453540593661e-17,-7.227763309733404e-17,-3.3371742869103828e-18)
    sum a = (-1.7343353315990573e-16,-5.520974302730685e-18,9.14312570966802e-17)
    sum e = 2.592001517322609
    sum de = 1.4077687583366472e-18
Info: CFL hydro = 0.011162652235428484 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011162652235428484 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6085e+04 |  512 |      1 | 3.183e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1262.5702899930106 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.67864509142659, dt = 0.011162652235428484 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.50 us    (1.1%)
   patch tree reduce : 1132.00 ns (0.3%)
   gen split merge   : 702.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 386.76 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.758674787026408e-17,-7.189561446185877e-17,-1.4929463915125396e-18)
    sum a = (2.5450344956490234e-17,1.1683622819225193e-16,8.306197526661285e-17)
    sum e = 2.5920015152317344
    sum de = -9.571472303973594e-19
Info: CFL hydro = 0.011161541268370732 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011161541268370732 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6064e+04 |  512 |      1 | 3.187e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1260.851277381413 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.689807743662016, dt = 0.011161541268370732 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.18 us    (1.0%)
   patch tree reduce : 1182.00 ns (0.3%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.2%)
   LB compute        : 387.78 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.92641170513164e-17,-6.979231645734552e-17,-8.664943762504151e-19)
    sum a = (4.1849336496202485e-17,5.2973250785903757e-17,-1.1382911215170044e-16)
    sum e = 2.5920015137668213
    sum de = 3.8624702394796095e-19
Info: CFL hydro = 0.011160324906353852 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011160324906353852 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5876e+04 |  512 |      1 | 3.225e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1245.9064207825875 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.700969284930387, dt = 0.011160324906353852 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 374.59 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.46 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.979982134474149e-17,-6.967961364151565e-17,-2.9390552491737055e-18)
    sum a = (-6.125763958586549e-17,-5.145688562746553e-17,-1.6683492966036023e-17)
    sum e = 2.592001513040075
    sum de = -6.352747104407253e-19
Info: CFL hydro = 0.011159015676758225 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011159015676758225 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6414e+04 |  512 |      1 | 3.119e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1288.040990893052 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.71212960983674, dt = 0.011159015676758225 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.36 us    (1.1%)
   patch tree reduce : 1252.00 ns (0.3%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 376.25 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.849422508863445e-17,-7.107595761945972e-17,-2.8014699934852948e-18)
    sum a = (-2.003768245079085e-17,-1.497922879484248e-16,2.1854759213284225e-16)
    sum e = 2.5920015131117844
    sum de = -2.642742795433417e-19
Info: CFL hydro = 0.01115762791287487 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01115762791287487 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6451e+04 |  512 |      1 | 3.112e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1290.7828521365989 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.723288625513497, dt = 0.01115762791287487 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.61 us    (0.9%)
   patch tree reduce : 761.00 ns  (0.2%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 521.00 ns  (0.1%)
   LB compute        : 367.86 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.79 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.831272964496037e-17,-7.300068752616462e-17,8.167294965333304e-19)
    sum a = (1.5814839672209646e-16,3.6673789005625676e-17,-9.832515661042929e-17)
    sum e = 2.5920015139859474
    sum de = 1.311207002349657e-18
Info: CFL hydro = 0.011156177991995638 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011156177991995638 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5857e+04 |  512 |      1 | 3.229e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1244.033842162527 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.734446253426373, dt = 0.011156177991995638 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.25 us    (1.1%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 682.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 376.01 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.124593020240265e-17,-7.172143738284898e-17,-2.0227959932062056e-18)
    sum a = (-1.606893329335335e-16,6.573647876040312e-17,-1.1947962150898884e-17)
    sum e = 2.592001515610473
    sum de = -2.9324280633943878e-18
Info: CFL hydro = 0.011154683894214252 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011154683894214252 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6520e+04 |  512 |      1 | 3.099e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1295.8839707510622 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.74560243141837, dt = 0.011154683894214252 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.63 us    (0.9%)
   patch tree reduce : 1282.00 ns (0.3%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 630.00 ns  (0.2%)
   LB compute        : 404.69 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.89 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.75662564492041e-17,-7.04363325478019e-17,-1.759334865292228e-18)
    sum a = (1.538027517844487e-17,1.738843444232252e-17,7.662620538084752e-17)
    sum e = 2.592001517880319
    sum de = 3.5575383784680614e-19
Info: CFL hydro = 0.011153165275882072 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011153165275882072 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5014e+04 |  512 |      1 | 3.410e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1177.5618816414228 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.756757115312585, dt = 0.011153165275882072 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.35 us    (0.9%)
   patch tree reduce : 630.00 ns  (0.2%)
   gen split merge   : 410.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 512.00 ns  (0.1%)
   LB compute        : 374.12 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.62 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.869328460750279e-17,-7.080664179981433e-17,-4.625206467823162e-19)
    sum a = (1.214965628104636e-16,8.43017062407414e-17,-1.1773199602715944e-16)
    sum e = 2.592001520645649
    sum de = 4.0318768289304696e-19
Info: CFL hydro = 0.011151643234467344 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011151643234467344 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6613e+04 |  512 |      1 | 3.082e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1302.8323139852243 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.767910280588467, dt = 0.011151643234467344 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.24 us    (0.8%)
   patch tree reduce : 641.00 ns  (0.2%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 368.42 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.54 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.080390097668031e-17,-6.938102436321314e-17,-2.9361279033079945e-18)
    sum a = (2.812008438601854e-17,8.150901828485324e-17,5.658559558419096e-17)
    sum e = 2.592001523722542
    sum de = 6.437450399132683e-20
Info: CFL hydro = 0.011150140186914823 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011150140186914823 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6423e+04 |  512 |      1 | 3.118e-02 | 0.2% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1287.700361833542 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.779061923822933, dt = 0.011150140186914823 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (0.9%)
   patch tree reduce : 561.00 ns  (0.2%)
   gen split merge   : 400.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 451.00 ns  (0.1%)
   LB compute        : 355.08 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.11 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.059020472848342e-17,-6.828839251883656e-17,-1.062626549253043e-18)
    sum a = (1.9002572952675488e-16,5.588888726815178e-17,6.874579031035388e-17)
    sum e = 2.5920015269064103
    sum de = -2.0608311606697127e-18
Info: CFL hydro = 0.011148679239350968 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011148679239350968 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6394e+04 |  512 |      1 | 3.123e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1285.3108103716604 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.790212064009847, dt = 0.011148679239350968 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (0.8%)
   patch tree reduce : 481.00 ns  (0.1%)
   gen split merge   : 461.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 410.00 ns  (0.1%)
   LB compute        : 375.69 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.20 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.355560609044852e-17,-6.809738320109892e-17,-4.0104638360238807e-19)
    sum a = (-6.558425677538615e-17,4.71361231296763e-17,4.2370404060299016e-17)
    sum e = 2.592001529986523
    sum de = -3.8455295805345235e-19
Info: CFL hydro = 0.011147284306808159 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011147284306808159 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6406e+04 |  512 |      1 | 3.121e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1286.0323247516815 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.801360743249198, dt = 0.011147284306808159 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (0.9%)
   patch tree reduce : 501.00 ns  (0.1%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 362.71 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.20 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.142157095434531e-17,-6.779952575926284e-17,1.3173056395698879e-20)
    sum a = (4.2575318270898775e-17,-1.1223444049135445e-17,4.5127963865798645e-17)
    sum e = 2.592001532761998
    sum de = -1.5636228206314384e-18
Info: CFL hydro = 0.011145979704939322 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011145979704939322 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6662e+04 |  512 |      1 | 3.073e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1305.9667248336395 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.812508027556007, dt = 0.011145979704939322 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (0.8%)
   patch tree reduce : 481.00 ns  (0.1%)
   gen split merge   : 431.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 421.00 ns  (0.1%)
   LB compute        : 364.86 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.01 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.265398356380958e-17,-6.806664606950896e-17,6.659711844492211e-19)
    sum a = (-2.988234659717648e-17,-3.222422328974517e-17,6.596481173792856e-17)
    sum e = 2.5920015350554113
    sum de = -8.190808599949084e-19
Info: CFL hydro = 0.011144790014795482 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011144790014795482 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4392e+04 |  512 |      1 | 3.558e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1127.8821666527685 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.823654007260945, dt = 0.011144790014795482 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 us    (0.8%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 441.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 431.00 ns  (0.1%)
   LB compute        : 383.46 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.01 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.161184843561651e-17,-6.834986678201649e-17,1.7139610043737097e-18)
    sum a = (9.79372832832226e-17,2.0357348619326476e-16,3.396306673397742e-17)
    sum e = 2.5920015367251885
    sum de = 3.773531780017908e-19
Info: CFL hydro = 0.011143739942329818 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011143739942329818 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5955e+04 |  512 |      1 | 3.209e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1250.245329768429 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.83479879727574, dt = 0.011143739942329818 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.97 us    (1.0%)
   patch tree reduce : 621.00 ns  (0.2%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 671.00 ns  (0.2%)
   LB compute        : 371.29 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.25 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.355560609044852e-17,-6.459115469044374e-17,1.741770790097963e-18)
    sum a = (1.930760239188256e-16,-1.8600355630726816e-17,-3.734122386300775e-17)
    sum e = 2.5920015376755754
    sum de = 2.2488724749601674e-19
Info: CFL hydro = 0.011142853757640627 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011142853757640627 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6293e+04 |  512 |      1 | 3.143e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1276.6043014861525 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.845942537218072, dt = 0.011142853757640627 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (0.8%)
   patch tree reduce : 702.00 ns  (0.2%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 491.00 ns  (0.1%)
   LB compute        : 414.67 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.24 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.616679860266261e-17,-6.612801126994194e-17,1.0040796319388256e-18)
    sum a = (2.014013955609073e-18,8.356986977431368e-17,-3.424994662881708e-17)
    sum e = 2.592001537861731
    sum de = 3.9916427639358903e-19
Info: CFL hydro = 0.01114215532197842 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01114215532197842 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6100e+04 |  512 |      1 | 3.180e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1261.4334837995002 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.857085390975712, dt = 0.01114215532197842 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 us    (0.9%)
   patch tree reduce : 491.00 ns  (0.1%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 561.00 ns  (0.1%)
   LB compute        : 370.86 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.32 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.525932138429224e-17,-6.463726038782869e-17,4.2739249639378587e-19)
    sum a = (-6.711818600901865e-17,-5.0180562830015596e-17,9.318912828903958e-17)
    sum e = 2.5920015372975866
    sum de = 5.939818542620781e-19
Info: CFL hydro = 0.011141667633467255 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011141667633467255 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6063e+04 |  512 |      1 | 3.187e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1258.4450843520397 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.86822754629769, dt = 0.011141667633467255 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.30 us    (0.8%)
   patch tree reduce : 501.00 ns  (0.1%)
   gen split merge   : 390.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 451.00 ns  (0.1%)
   LB compute        : 378.37 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 1974.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.430207928620479e-17,-6.61613098291644e-17,2.199900418081713e-18)
    sum a = (-2.973012461215951e-17,-3.9811903773667724e-19,-7.900906491553617e-17)
    sum e = 2.5920015360489606
    sum de = -7.019520852573997e-19
Info: CFL hydro = 0.01114141261100482 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01114141261100482 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6190e+04 |  512 |      1 | 3.162e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1268.3065610995366 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.879369213931156, dt = 0.01114141261100482 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (0.8%)
   patch tree reduce : 491.00 ns  (0.1%)
   gen split merge   : 411.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 531.00 ns  (0.1%)
   LB compute        : 364.63 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.11 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.418791279744207e-17,-6.608702842782199e-17,4.0690107533380983e-19)
    sum a = (7.149749542412209e-17,9.860471814060467e-17,9.348771756734208e-17)
    sum e = 2.5920015342293947
    sum de = 1.1964340379966992e-20
Info: CFL hydro = 0.011141411270137718 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011141411270137718 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6102e+04 |  512 |      1 | 3.180e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1261.3760061005746 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.89051062654216, dt = 0.011141411270137718 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.49 us    (0.8%)
   patch tree reduce : 672.00 ns  (0.2%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 491.00 ns  (0.1%)
   LB compute        : 407.55 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.65 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.558425677538615e-17,-6.440270680033861e-17,2.3623681136286658e-18)
    sum a = (-1.3584055755244683e-16,-1.197957748624856e-16,1.7564075194265172e-20)
    sum e = 2.5920015319909977
    sum de = -7.434831694524621e-19
Info: CFL hydro = 0.011141683838767071 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011141683838767071 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5975e+04 |  512 |      1 | 3.205e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1251.4806663800807 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.901652037812298, dt = 0.011141683838767071 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.2%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1363.00 ns (0.3%)
   LB compute        : 398.88 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.258811828183109e-17,-6.665346985283705e-17,2.0725608729232902e-18)
    sum a = (-1.299273189037109e-16,2.0705849144639354e-16,-4.992881108556446e-17)
    sum e = 2.592001529518409
    sum de = -2.043255227014186e-18
Info: CFL hydro = 0.011142248022646907 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011142248022646907 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6018e+04 |  512 |      1 | 3.196e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1254.8239340062314 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.912793721651063, dt = 0.011142248022646907 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.11 us    (1.0%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 409.20 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.109078087151997e-17,-6.269825967002845e-17,9.104045642360781e-19)
    sum a = (1.4084046429108098e-16,-1.0523369285350692e-16,-2.9364206378945655e-17)
    sum e = 2.592001527008694
    sum de = -3.3881317890172014e-21
Info: CFL hydro = 0.011142213081885273 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011142213081885273 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6206e+04 |  512 |      1 | 3.159e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1269.6058290550502 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.92393596967371, dt = 0.011142213081885273 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (0.8%)
   patch tree reduce : 941.00 ns  (0.2%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 403.53 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.443234617722893e-17,-6.56384126739018e-17,6.191336505978473e-19)
    sum a = (4.6029586392437594e-17,3.6501441517781954e-17,-4.914720973941966e-17)
    sum e = 2.5920015246520967
    sum de = -1.0714966782766899e-19
Info: CFL hydro = 0.011142514520451037 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011142514520451037 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6094e+04 |  512 |      1 | 3.181e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1260.852896229351 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.935078182755596, dt = 0.011142514520451037 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.32 us    (0.8%)
   patch tree reduce : 962.00 ns  (0.2%)
   gen split merge   : 421.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 591.00 ns  (0.1%)
   LB compute        : 397.29 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.44 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.446161963588603e-17,-6.434672131065688e-17,7.903833837419327e-20)
    sum a = (-6.640391361778519e-17,4.444735595202087e-17,-1.5547133892790387e-17)
    sum e = 2.5920015226403987
    sum de = 1.7345117177399935e-18
Info: CFL hydro = 0.011143229618852977 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011143229618852977 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6276e+04 |  512 |      1 | 3.146e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1275.180872077356 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.946220697276047, dt = 0.011143229618852977 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.45 us    (0.9%)
   patch tree reduce : 952.00 ns  (0.2%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 392.34 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.317505112790611e-17,-6.377040009334506e-17,1.507583120841094e-19)
    sum a = (8.323029765389123e-17,1.0903924247893104e-16,1.2959360147501986e-17)
    sum e = 2.5920015211300886
    sum de = -5.105491089575295e-19
Info: CFL hydro = 0.011144384006769308 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011144384006769308 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5807e+04 |  512 |      1 | 3.239e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1238.4891350207986 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.9573639268949, dt = 0.011144384006769308 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (0.8%)
   patch tree reduce : 611.00 ns  (0.2%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 692.00 ns  (0.2%)
   LB compute        : 380.70 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.50 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513671875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.474996320365855e-17,-6.217609435123228e-17,3.161533534967731e-19)
    sum a = (3.3957212042246e-18,-3.425872866641422e-17,-1.1931861748637473e-17)
    sum e = 2.592001520238719
    sum de = -8.99548989984067e-19
Info: CFL hydro = 0.011145999568558796 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011145999568558796 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6186e+04 |  512 |      1 | 3.163e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1268.3164340328037 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.96850831090167, dt = 0.011145999568558796 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.22 us    (0.9%)
   patch tree reduce : 812.00 ns  (0.2%)
   gen split merge   : 421.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 481.00 ns  (0.1%)
   LB compute        : 363.67 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.83 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.420401319970348e-17,-6.353840793348747e-17,-1.0977546996415732e-19)
    sum a = (-9.89384355692957e-17,7.921105178027021e-17,1.2257382608904522e-16)
    sum e = 2.5920015200374364
    sum de = 6.320983368885216e-19
Info: CFL hydro = 0.01114809450379698 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01114809450379698 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6307e+04 |  512 |      1 | 3.140e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1278.0166435197548 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.979654310470227, dt = 0.01114809450379698 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (0.8%)
   patch tree reduce : 501.00 ns  (0.1%)
   gen split merge   : 390.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 340.00 ns  (0.1%)
   LB compute        : 369.46 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.21 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.290866265412643e-17,-6.207656459179811e-17,2.0491421059976032e-18)
    sum a = (-4.5148455286858623e-17,-6.383955863942248e-17,2.3102613572190123e-17)
    sum e = 2.5920015205461517
    sum de = 1.141879822237602e-18
Info: CFL hydro = 0.01115068306500799 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01115068306500799 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6184e+04 |  512 |      1 | 3.164e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1268.5824317662932 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.990802404974023, dt = 0.009197595025977279 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (0.8%)
   patch tree reduce : 481.00 ns  (0.1%)
   gen split merge   : 411.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 381.00 ns  (0.1%)
   LB compute        : 377.11 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 1983.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.282230595108795e-17,-6.346924938741005e-17,1.6480957223952153e-18)
    sum a = (-7.523315466700236e-17,4.4642024452090645e-17,2.821229578078843e-17)
    sum e = 2.5920015096385027
    sum de = 7.580944877925988e-19
Info: CFL hydro = 0.011153272332227668 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011153272332227668 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6247e+04 |  512 |      1 | 3.151e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1050.6756431595174 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 2158                                                    [SPH][rank=0]
Info: time since start : 809.73250669 (s)                                             [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14991576886963076 max=0.15008329516705674 delta=0.0001675262974259739
Number of particle pairs: 130816
Distance min=0.128515 max=1.940449 mean=0.800539
---------------- t = 20, dt = 0.011153272332227668 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.61 us    (1.5%)
   patch tree reduce : 1913.00 ns (0.3%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.2%)
   LB compute        : 602.31 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.175967940183492e-17,-6.234222122911137e-17,1.8500825871292648e-18)
    sum a = (3.453536285072389e-17,9.503335618443743e-17,3.42953204897356e-17)
    sum e = 2.5920015228192317
    sum de = -1.1784345878675453e-18
Info: CFL hydro = 0.011156708777933951 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011156708777933951 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3652e+04 |  512 |      1 | 3.750e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1070.586672707359 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.011153272332226, dt = 0.011156708777933951 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (0.6%)
   patch tree reduce : 1743.00 ns (0.2%)
   gen split merge   : 771.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.1%)
   LB compute        : 763.64 us  (97.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.24724881201355e-17,-6.095612296169728e-17,2.5014170422499316e-18)
    sum a = (-2.706331252849692e-17,6.904437958865639e-17,5.974420177329298e-17)
    sum e = 2.592001525153162
    sum de = 1.4742608446961097e-18
Info: CFL hydro = 0.011160729675988164 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011160729675988164 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3772e+04 |  512 |      1 | 3.718e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1080.328210469924 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.022309981110162, dt = 0.011160729675988164 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.2%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 1173.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 385.93 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.209193315759309e-17,-6.030917952537518e-17,3.3225375575818283e-18)
    sum a = (1.4651366057882863e-16,9.851104307290193e-17,7.44285004721651e-17)
    sum e = 2.5920015276782014
    sum de = -6.445920728605226e-19
Info: CFL hydro = 0.011165256556271798 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011165256556271798 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5686e+04 |  512 |      1 | 3.264e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1230.9328505496692 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.03347071078615, dt = 0.011165256556271798 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1664.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 400.07 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.57 us    (74.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.463872406076154e-17,-5.910896772043372e-17,4.202204990227942e-18)
    sum a = (-3.617614020845483e-17,-4.621693652784309e-17,-9.75914905528355e-17)
    sum e = 2.5920015303722947
    sum de = -2.1811098391798234e-18
Info: CFL hydro = 0.011170280875639467 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011170280875639467 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6258e+04 |  512 |      1 | 3.149e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1276.3566758146787 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.044635967342423, dt = 0.011170280875639467 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.2%)
   patch tree reduce : 1914.00 ns (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 385.54 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.329799965426597e-17,-6.064728797286478e-17,2.2935754857844602e-18)
    sum a = (-9.112827679957913e-17,-8.799601672326851e-17,3.943281248405817e-17)
    sum e = 2.5920015330480837
    sum de = -4.2266944067989587e-19
Info: CFL hydro = 0.01117578934877113 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01117578934877113 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6171e+04 |  512 |      1 | 3.166e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1270.1160580679125 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.05580624821806, dt = 0.01117578934877113 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.42 us    (1.1%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 394.60 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.174943369130492e-17,-6.171796472324853e-17,3.168851899632008e-18)
    sum a = (-3.28799487636644e-17,-7.297287774044037e-17,2.7262006129132042e-17)
    sum e = 2.5920015355228196
    sum de = -1.345088320239829e-18
Info: CFL hydro = 0.011181763799027836 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011181763799027836 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5456e+04 |  512 |      1 | 3.313e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1214.5492192952088 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.066982037566834, dt = 0.011181763799027836 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.2%)
   patch tree reduce : 1823.00 ns (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 384.38 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.192214709738186e-17,-6.249005219532977e-17,3.556725226838697e-18)
    sum a = (-1.7623793049925674e-16,8.126312123213353e-18,6.0700712034914e-17)
    sum e = 2.5920015376307535
    sum de = -5.13301966036106e-19
Info: CFL hydro = 0.011188181307587534 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011188181307587534 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6185e+04 |  512 |      1 | 3.163e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1272.5181638741005 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.07816380136586, dt = 0.011188181307587534 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.2%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 408.17 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.900943796099955e-17,-6.197191197709895e-17,4.51689467079186e-18)
    sum a = (-1.242131397738433e-16,-4.944872636358788e-17,-2.4790228463772433e-17)
    sum e = 2.5920015392364775
    sum de = -9.825582188149884e-19
Info: CFL hydro = 0.011195014244052842 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011195014244052842 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4484e+04 |  512 |      1 | 3.535e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1139.4506704715009 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.08935198267345, dt = 0.011195014244052842 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (1.0%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 432.11 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.809610605089777e-17,-6.274912230444518e-17,3.9387438623139646e-18)
    sum a = (9.833540232095928e-17,1.519995067311708e-16,-7.032948442370346e-19)
    sum e = 2.592001540244211
    sum de = -6.945670167485263e-20
Info: CFL hydro = 0.011202230502886682 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011202230502886682 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5369e+04 |  512 |      1 | 3.331e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1209.7911634083584 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.1005469969175, dt = 0.011202230502886682 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 416.21 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.038236317201795e-17,-6.002815432226694e-17,3.843605121678362e-18)
    sum a = (-1.1913126735096923e-16,2.2950391587173157e-18,9.858715406541041e-17)
    sum e = 2.592001540605488
    sum de = -8.707498697774207e-19
Info: CFL hydro = 0.011203192910178378 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011203192910178378 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5571e+04 |  512 |      1 | 3.288e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1226.4737300667996 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.111749227420386, dt = 0.011203192910178378 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 409.58 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.785899103577518e-17,-6.068827081498473e-17,5.4756004418121676e-18)
    sum a = (1.7739715946207824e-17,4.5526082903535325e-17,3.6845038738769767e-17)
    sum e = 2.5920015402636123
    sum de = -9.181837148236616e-19
Info: CFL hydro = 0.011204510164564233 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011204510164564233 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5839e+04 |  512 |      1 | 3.233e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1247.638089491164 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.122952420330563, dt = 0.011204510164564233 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (0.9%)
   patch tree reduce : 1713.00 ns (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 492.39 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.888356208877399e-17,-5.98715413184514e-17,5.554638780186361e-18)
    sum a = (-1.271756137899427e-16,-1.0293719002185675e-16,-1.152671708082309e-16)
    sum e = 2.5920015393350537
    sum de = 2.1175823681357508e-19
Info: CFL hydro = 0.011206445658064964 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011206445658064964 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5715e+04 |  512 |      1 | 3.258e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1238.0784038394704 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.134156930495127, dt = 0.011206445658064964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.1%)
   patch tree reduce : 1944.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 430.82 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.653583070447388e-17,-6.204802296960743e-17,3.4689048508673715e-18)
    sum a = (-9.475233098132918e-17,6.688399833976177e-17,-1.0065386024660227e-16)
    sum e = 2.592001537924875
    sum de = -2.574980159653073e-19
Info: CFL hydro = 0.011204410887883454 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011204410887883454 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5801e+04 |  512 |      1 | 3.240e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1245.0705916246202 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.145363376153192, dt = 0.011204410887883454 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (1.1%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 416.30 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.593865214786886e-17,-6.027844239378522e-17,2.42823339560716e-18)
    sum a = (5.4905299057272925e-17,6.653271683587647e-17,7.857728140034381e-17)
    sum e = 2.5920015361338598
    sum de = -1.2197274440461925e-19
Info: CFL hydro = 0.011202969966970261 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011202969966970261 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6102e+04 |  512 |      1 | 3.180e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1268.559147183916 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.156567787041077, dt = 0.011202969966970261 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.2%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.2%)
   LB compute        : 400.06 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.73496328551415e-17,-5.932559131449633e-17,4.385164106834871e-18)
    sum a = (-2.343047630914974e-17,-5.4682820771478903e-17,-7.259525012376366e-17)
    sum e = 2.5920015341699223
    sum de = -1.0503208545953324e-19
Info: CFL hydro = 0.011202102929837855 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011202102929837855 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6150e+04 |  512 |      1 | 3.170e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1272.1608039531297 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.167770757008046, dt = 0.011202102929837855 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.2%)
   patch tree reduce : 1694.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 397.84 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.645093767436826e-17,-6.060776880367769e-17,2.785369591223885e-18)
    sum a = (3.583071339630095e-18,1.226792105402108e-16,1.4849547372991488e-16)
    sum e = 2.5920015322120986
    sum de = -2.168404344971009e-19
Info: CFL hydro = 0.011199887928372036 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011199887928372036 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5521e+04 |  512 |      1 | 3.299e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1222.469418384346 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.178972859937883, dt = 0.011199887928372036 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (1.1%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 420.46 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.658266823832526e-17,-5.807561462983779e-17,5.50341022753642e-18)
    sum a = (-2.5631840400164308e-17,-6.196605728536752e-17,1.2632082879715512e-16)
    sum e = 2.59200153042445
    sum de = 9.961107459710572e-19
Info: CFL hydro = 0.011197335458926554 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011197335458926554 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5963e+04 |  512 |      1 | 3.207e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1257.1091619462552 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.190172747866253, dt = 0.011197335458926554 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.2%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 390.07 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.618162185472286e-17,-6.016281223208963e-17,6.703622032477874e-18)
    sum a = (1.4503242357077893e-16,-1.3875619403469486e-17,1.1222858579962302e-16)
    sum e = 2.5920015289783214
    sum de = 1.8634724839594607e-19
Info: CFL hydro = 0.011195309081689274 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011195309081689274 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6097e+04 |  512 |      1 | 3.181e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1267.3228295142194 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.20137008332518, dt = 0.011195309081689274 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.04 us    (1.0%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 382.58 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 2.85 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.860839157739717e-17,-5.97500564650244e-17,7.807231423850869e-18)
    sum a = (-8.512721777487187e-18,-1.1123914289701275e-18,1.1697674079380605e-16)
    sum e = 2.592001528014279
    sum de = 8.978549240895584e-19
Info: CFL hydro = 0.011193844219560845 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011193844219560845 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5760e+04 |  512 |      1 | 3.249e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1240.6066379297476 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.21256539240687, dt = 0.011193844219560845 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.2%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 392.20 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.779751677259526e-17,-5.994033394629561e-17,9.323596582289096e-18)
    sum a = (-4.809043788189804e-17,8.753935076821762e-17,6.472068974500145e-17)
    sum e = 2.5920015276278914
    sum de = 8.893845946170154e-19
Info: CFL hydro = 0.01119279627632414 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01119279627632414 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6007e+04 |  512 |      1 | 3.199e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1259.8498794440043 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.22375923662643, dt = 0.01119279627632414 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (1.0%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 412.17 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.693687708807626e-17,-5.841518675026025e-17,9.698296853100085e-18)
    sum a = (8.041419093107737e-17,1.6756127735328974e-17,6.074096304056753e-17)
    sum e = 2.5920015278675397
    sum de = 2.5360166440793752e-18
Info: CFL hydro = 0.011191150251208143 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011191150251208143 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4726e+04 |  512 |      1 | 3.477e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1158.9089705678018 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.234952032902754, dt = 0.011191150251208143 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.96 us    (0.9%)
   patch tree reduce : 1202.00 ns (0.3%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 701.00 ns  (0.2%)
   LB compute        : 402.48 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.865522911124854e-17,-5.854106262248582e-17,1.0515026349633416e-17)
    sum a = (2.1825705305567045e-16,4.894522287468561e-18,4.515138263272433e-17)
    sum e = 2.5920015287264464
    sum de = 1.4535085374883794e-18
Info: CFL hydro = 0.011189962502499142 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011189962502499142 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6009e+04 |  512 |      1 | 3.198e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1259.7498602407134 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.24614318315396, dt = 0.011189962502499142 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.47 us    (0.9%)
   patch tree reduce : 951.00 ns  (0.2%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 681.00 ns  (0.2%)
   LB compute        : 380.51 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.79 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.194849321017326e-17,-5.855862669768008e-17,1.0921927424967225e-17)
    sum a = (-1.243712164505917e-16,-2.422085969289167e-17,-8.149438155552469e-17)
    sum e = 2.592001530161195
    sum de = 5.285485590866834e-19
Info: CFL hydro = 0.011186515871447518 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011186515871447518 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6250e+04 |  512 |      1 | 3.151e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1278.5289634244057 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.25733314565646, dt = 0.011186515871447518 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.57 us    (0.9%)
   patch tree reduce : 651.00 ns  (0.2%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1213.00 ns (0.3%)
   LB compute        : 362.41 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.64 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.86991392992342e-17,-5.915873260015081e-17,9.35726105974477e-18)
    sum a = (-6.242711425921699e-17,-2.885777554417768e-17,3.629835689834826e-17)
    sum e = 2.5920015320560315
    sum de = -9.385125055577648e-19
Info: CFL hydro = 0.011183669795194907 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011183669795194907 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6474e+04 |  512 |      1 | 3.108e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1295.7490203150478 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.268519661527908, dt = 0.011183669795194907 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.10 us    (1.0%)
   patch tree reduce : 711.00 ns  (0.2%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 542.00 ns  (0.1%)
   LB compute        : 396.45 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.80 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.840933205852883e-17,-5.95334328709618e-17,1.0481361872177742e-17)
    sum a = (1.387258228213381e-16,-6.994600211529534e-17,3.577875300718458e-17)
    sum e = 2.592001534295103
    sum de = 2.203132695808435e-18
Info: CFL hydro = 0.01118154426272229 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01118154426272229 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6157e+04 |  512 |      1 | 3.169e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1270.544025556974 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.279703331323102, dt = 0.01118154426272229 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (0.7%)
   patch tree reduce : 511.00 ns  (0.1%)
   gen split merge   : 571.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 501.00 ns  (0.1%)
   LB compute        : 416.58 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.56 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.10410159918029e-17,-6.039992724721222e-17,1.0810688282070213e-17)
    sum a = (-2.0192831781673527e-17,6.232319348098426e-17,-1.4009984578705614e-16)
    sum e = 2.592001536717506
    sum de = 3.5744790374131474e-19
Info: CFL hydro = 0.011180199679618008 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011180199679618008 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6090e+04 |  512 |      1 | 3.182e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1264.9904802814924 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.290884875585824, dt = 0.011180199679618008 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.37 us    (0.9%)
   patch tree reduce : 561.00 ns  (0.1%)
   gen split merge   : 1153.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 611.00 ns  (0.2%)
   LB compute        : 370.77 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.72 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.987593233724997e-17,-5.919386075053934e-17,8.189250059326136e-18)
    sum a = (-9.63770079367987e-17,-4.442832820389375e-17,-9.100386460028642e-18)
    sum e = 2.5920015391468456
    sum de = 9.47829867977562e-19
Info: CFL hydro = 0.01117968802071231 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01117968802071231 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6133e+04 |  512 |      1 | 3.174e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1268.2567861105808 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.302065075265443, dt = 0.01117968802071231 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.40 us    (0.9%)
   patch tree reduce : 611.00 ns  (0.2%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 500.00 ns  (0.1%)
   LB compute        : 371.51 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.58 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.823661865245189e-17,-6.02330685328667e-17,8.941577946813829e-18)
    sum a = (2.628171118235212e-17,-8.791405103902861e-17,-2.8372202048702885e-17)
    sum e = 2.5920015414052218
    sum de = 9.677351422380381e-20
Info: CFL hydro = 0.011179791928041864 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011179791928041864 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6119e+04 |  512 |      1 | 3.176e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1267.071911629541 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.313244763286153, dt = 0.011179791928041864 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.15 us    (1.0%)
   patch tree reduce : 1253.00 ns (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 387.78 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.915287790841938e-17,-6.13952248415539e-17,8.389773251127331e-18)
    sum a = (-5.576593874179192e-17,1.4788951313571274e-17,2.0757077697289296e-17)
    sum e = 2.5920015433251007
    sum de = -1.7182063335053482e-18
Info: CFL hydro = 0.011180715965576472 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011180715965576472 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6067e+04 |  512 |      1 | 3.187e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1263.0071854782195 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.324424555214197, dt = 0.011180715965576472 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.79 us    (0.9%)
   patch tree reduce : 1013.00 ns (0.2%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 751.00 ns  (0.2%)
   LB compute        : 401.46 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.827174680284042e-17,-6.051994842770636e-17,8.852293897909646e-18)
    sum a = (5.527999932808392e-17,-2.6146321436062992e-17,-2.2211968592547592e-17)
    sum e = 2.592001544767266
    sum de = -7.182839392716467e-19
Info: CFL hydro = 0.011182607957022956 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011182607957022956 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6456e+04 |  512 |      1 | 3.111e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1293.6582080656358 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.335605271179773, dt = 0.011182607957022956 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (0.8%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 320.00 ns  (0.1%)
   LB compute        : 368.71 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.29 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.950123206643898e-17,-6.108199883392284e-17,8.493694029360067e-18)
    sum a = (2.0491421059976032e-18,-3.8354085532543716e-17,6.801066057982725e-17)
    sum e = 2.5920015456268697
    sum de = 7.4454196063653e-19
Info: CFL hydro = 0.011184174329951354 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011184174329951354 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6186e+04 |  512 |      1 | 3.163e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1272.6299213969692 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.346787879136794, dt = 0.011184174329951354 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (0.8%)
   patch tree reduce : 480.00 ns  (0.1%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 512.00 ns  (0.1%)
   LB compute        : 366.72 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.22 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.900065592340242e-17,-6.161184843561651e-17,9.721715620025773e-18)
    sum a = (6.66498106705049e-17,-3.701628847191385e-17,1.0289254799740466e-17)
    sum e = 2.592001545831473
    sum de = -1.4060746924421386e-19
Info: CFL hydro = 0.01118129614417003 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01118129614417003 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4807e+04 |  512 |      1 | 3.458e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1164.4012221367573 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.357972053466746, dt = 0.01118129614417003 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.36 us    (0.9%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 470.00 ns  (0.1%)
   LB compute        : 360.37 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.10 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.036479909682368e-17,-6.203338624027888e-17,9.616331168860181e-18)
    sum a = (1.2817091138428437e-16,3.486468926061636e-18,2.5580611847514368e-17)
    sum e = 2.592001545333096
    sum de = 1.2163393122571753e-18
Info: CFL hydro = 0.011179086569425536 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011179086569425536 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6531e+04 |  512 |      1 | 3.097e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1299.6524303831866 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.369153349610915, dt = 0.011179086569425536 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (0.8%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 632.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 501.00 ns  (0.1%)
   LB compute        : 384.07 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.26 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505859375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.232904817271567e-17,-6.172894227024495e-17,9.903211063699845e-18)
    sum a = (1.9408303089663014e-16,-4.846513815270903e-17,1.0779512048600393e-16)
    sum e = 2.5920015442189994
    sum de = 5.827586677109586e-19
Info: CFL hydro = 0.011177552396551901 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011177552396551901 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5973e+04 |  512 |      1 | 3.205e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1255.5575988541298 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.38033243618034, dt = 0.011177552396551901 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (0.8%)
   patch tree reduce : 481.00 ns  (0.1%)
   gen split merge   : 601.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 431.00 ns  (0.1%)
   LB compute        : 396.14 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.17 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.47323991284643e-17,-6.254274442091257e-17,1.1557161477826483e-17)
    sum a = (-1.5455215232607066e-16,8.321858827042839e-17,4.250359829718886e-17)
    sum e = 2.592001542578472
    sum de = -3.083199928005653e-19
Info: CFL hydro = 0.011176692934847205 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011176692934847205 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6451e+04 |  512 |      1 | 3.112e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1292.922457198129 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.391509988576892, dt = 0.011176692934847205 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (0.7%)
   patch tree reduce : 481.00 ns  (0.1%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 371.00 ns  (0.1%)
   LB compute        : 401.03 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.18 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.117567390162559e-17,-6.080682832254602e-17,1.1800131184680485e-17)
    sum a = (1.8607381260804524e-16,-1.3969294471172233e-17,-6.378686641383969e-17)
    sum e = 2.5920015405414807
    sum de = -1.4230153513872246e-18
Info: CFL hydro = 0.011176499471442046 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011176499471442046 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6353e+04 |  512 |      1 | 3.131e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1285.095866643988 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.40268668151174, dt = 0.011176499471442046 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 us    (0.8%)
   patch tree reduce : 491.00 ns  (0.1%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 361.00 ns  (0.1%)
   LB compute        : 375.39 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.17 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (85.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.517442835418664e-17,-6.175236103717063e-17,1.0368659056347873e-17)
    sum a = (3.3980630809171685e-17,-2.4127184625188923e-17,-9.21967580405636e-17)
    sum e = 2.5920015382693555
    sum de = 2.270048298641525e-19
Info: CFL hydro = 0.011176955074336734 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011176955074336734 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6076e+04 |  512 |      1 | 3.185e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1263.3628888724645 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.41386318098318, dt = 0.011176955074336734 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (0.7%)
   patch tree reduce : 501.00 ns  (0.1%)
   gen split merge   : 492.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 331.00 ns  (0.1%)
   LB compute        : 416.48 us  (97.6%)
   LB move op cnt    : 0
   LB apply          : 2.19 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.464165140662725e-17,-6.210364254105593e-17,9.21967580405636e-18)
    sum a = (-4.953069204782778e-17,-1.1258572199523975e-17,-1.1337610537898168e-17)
    sum e = 2.592001535944135
    sum de = 1.4738373282224826e-18
Info: CFL hydro = 0.011178034692713189 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011178034692713189 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6416e+04 |  512 |      1 | 3.119e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1290.1298146838428 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.42504013605752, dt = 0.011178034692713189 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (0.8%)
   patch tree reduce : 531.00 ns  (0.1%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 420.00 ns  (0.1%)
   LB compute        : 368.18 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.18 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.334483718811735e-17,-6.195142055603897e-17,9.664632375644411e-18)
    sum a = (-1.7002024788048687e-16,-6.414400260945641e-17,4.142779869154012e-17)
    sum e = 2.5920015337540394
    sum de = 8.809142651444724e-20
Info: CFL hydro = 0.011179396102752 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 0.011179396102752 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6378e+04 |  512 |      1 | 3.126e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1287.211970750363 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.43621817075023, dt = 0.011179396102752 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (0.8%)
   patch tree reduce : 472.00 ns  (0.1%)
   gen split merge   : 512.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 712.00 ns  (0.2%)
   LB compute        : 384.42 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.18 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.081561036014315e-17,-6.288231654133502e-17,1.0516490022566272e-17)
    sum a = (-4.239967751895612e-17,-3.4226527861891395e-17,-9.453570738726658e-17)
    sum e = 2.592001531876932
    sum de = -6.911788849595091e-19
Info: CFL hydro = 0.01117687326719658 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01117687326719658 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6186e+04 |  512 |      1 | 3.163e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1272.2635938838143 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.44739756685298, dt = 0.01117687326719658 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (0.8%)
   patch tree reduce : 472.00 ns  (0.1%)
   gen split merge   : 512.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 541.00 ns  (0.1%)
   LB compute        : 363.84 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.00 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.11522551346999e-17,-6.307844871433766e-17,8.594687461727091e-18)
    sum a = (-1.5422428958911106e-16,8.40850826466788e-17,1.70757939038646e-16)
    sum e = 2.592001530445201
    sum de = 6.098637220230962e-19
Info: CFL hydro = 0.011174720892964706 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011174720892964706 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6362e+04 |  512 |      1 | 3.129e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1285.8546890232071 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.458574440120177, dt = 0.011174720892964706 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (0.7%)
   patch tree reduce : 561.00 ns  (0.1%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 340.00 ns  (0.1%)
   LB compute        : 421.39 us  (97.7%)
   LB move op cnt    : 0
   LB apply          : 1944.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.877232294587697e-17,-6.159428436042224e-17,1.2047491910333052e-17)
    sum a = (-8.64855062565617e-17,-8.806627302404557e-17,-3.374937048578053e-17)
    sum e = 2.5920015296149748
    sum de = 1.1553529400548657e-18
Info: CFL hydro = 0.011173264476409404 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011173264476409404 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6305e+04 |  512 |      1 | 3.140e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1281.0927989632075 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.46974916101314, dt = 0.011173264476409404 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (0.8%)
   patch tree reduce : 601.00 ns  (0.1%)
   gen split merge   : 411.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 330.00 ns  (0.1%)
   LB compute        : 399.10 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 2.02 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.799950363732931e-17,-6.347656775207433e-17,1.0396468842072127e-17)
    sum a = (-1.2101647808848704e-16,-4.975317033362181e-17,-1.0646610546297119e-16)
    sum e = 2.5920015294696066
    sum de = 9.825582188149884e-19
Info: CFL hydro = 0.011172511590557113 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011172511590557113 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6286e+04 |  512 |      1 | 3.144e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1279.4273317145048 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.48092242548955, dt = 0.011172511590557113 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (0.9%)
   patch tree reduce : 480.00 ns  (0.1%)
   gen split merge   : 390.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 421.00 ns  (0.1%)
   LB compute        : 365.98 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 1924.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.654022172327244e-17,-6.391274228606525e-17,8.825947785118249e-18)
    sum a = (7.566018124516294e-17,1.7465716373177286e-16,-5.509264919267842e-17)
    sum e = 2.5920015300420687
    sum de = -4.845028458294598e-19
Info: CFL hydro = 0.011172459012934396 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011172459012934396 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5736e+04 |  512 |      1 | 3.254e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1236.1818070224988 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.492094937080108, dt = 0.007905062919892458 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.35 us    (0.8%)
   patch tree reduce : 881.00 ns  (0.2%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 601.00 ns  (0.1%)
   LB compute        : 398.36 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.31 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.833907575775176e-17,-6.11522551346999e-17,8.885958375365322e-18)
    sum a = (-9.557198782372822e-17,8.723490679818369e-17,-1.9339510461818808e-17)
    sum e = 2.592001513241248
    sum de = 7.995991022080595e-19
Info: CFL hydro = 0.011173006247442583 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011173006247442583 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6311e+04 |  512 |      1 | 3.139e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 906.6233636750229 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 2203                                                    [SPH][rank=0]
Info: time since start : 811.96546818 (s)                                             [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14991856921874114 max=0.15008164971420446 delta=0.00016308049546331915
Number of particle pairs: 130816
Distance min=0.127690 max=1.849749 mean=0.800536
---------------- t = 20.5, dt = 0.011173006247442583 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.40 us   (1.5%)
   patch tree reduce : 1653.00 ns (0.2%)
   gen split merge   : 571.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.1%)
   LB compute        : 651.01 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 4.81 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.64597197119654e-17,-6.068973448791759e-17,8.634206630914187e-18)
    sum a = (2.336022000837268e-17,1.6076983494484053e-17,1.2710535748916562e-16)
    sum e = 2.592001532080637
    sum de = -3.5405977195229754e-18
Info: CFL hydro = 0.011173942597993146 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011173942597993146 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1376e+04 |  512 |      1 | 4.501e-02 | 0.0% |   1.2% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 893.7244744980728 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.511173006247443, dt = 0.011173942597993146 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (0.8%)
   patch tree reduce : 591.00 ns  (0.1%)
   gen split merge   : 591.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 430.00 ns  (0.1%)
   LB compute        : 392.98 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.62 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.757357481386838e-17,-6.075120875109752e-17,1.091753640616866e-17)
    sum a = (-1.4490362035268767e-16,3.9448912886319573e-17,-2.8143503152944224e-17)
    sum e = 2.59200153459491
    sum de = 2.270048298641525e-19
Info: CFL hydro = 0.01117568437454233 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01117568437454233 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5630e+04 |  512 |      1 | 3.276e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1228.0024158425936 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.522346948845435, dt = 0.01117568437454233 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (0.8%)
   patch tree reduce : 481.00 ns  (0.1%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 552.00 ns  (0.1%)
   LB compute        : 398.96 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.40 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.490822640313864e-17,-6.009841062304399e-17,9.726106638824338e-18)
    sum a = (6.98025621678755e-17,3.644545602810023e-17,2.1366697473823582e-17)
    sum e = 2.5920015372803054
    sum de = 5.454892180317694e-19
Info: CFL hydro = 0.01117802181183945 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01117802181183945 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6236e+04 |  512 |      1 | 3.153e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1275.824145193164 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.533522633219977, dt = 0.01117802181183945 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.30 us    (0.8%)
   patch tree reduce : 481.00 ns  (0.1%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 530.00 ns  (0.1%)
   LB compute        : 381.59 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.44 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.713154558814604e-17,-5.967687281838163e-17,1.0207655033733776e-17)
    sum a = (-1.7464545434831002e-17,-1.2653745239121773e-16,-7.802547670465732e-17)
    sum e = 2.592001540204897
    sum de = 1.2841019480375193e-18
Info: CFL hydro = 0.011180903607297978 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011180903607297978 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6411e+04 |  512 |      1 | 3.120e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1289.8679915162263 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.544700655031818, dt = 0.011180903607297978 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.45 us    (1.2%)
   patch tree reduce : 1594.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 367.59 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.626212386602992e-17,-6.204363195080886e-17,8.742518427945489e-18)
    sum a = (1.6690701555230337e-16,-3.6012208839975024e-17,-3.025997421385318e-17)
    sum e = 2.59200154317752
    sum de = 5.72594272343907e-19
Info: CFL hydro = 0.011184269449558859 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011184269449558859 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5752e+04 |  512 |      1 | 3.250e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1238.3320597504373 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.555881558639115, dt = 0.011184269449558859 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.2%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 380.35 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.924508930318927e-17,-6.183725406727624e-17,8.840584514446802e-18)
    sum a = (6.82657055883773e-17,-3.8863443713177403e-17,-5.222385024428178e-17)
    sum e = 2.592001546004152
    sum de = 7.894347068410079e-19
Info: CFL hydro = 0.011187894447234305 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011187894447234305 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7726e+04 |  512 |      1 | 2.888e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1393.9368137781125 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.567065828088673, dt = 0.011187894447234305 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.91 us    (0.9%)
   patch tree reduce : 761.00 ns  (0.2%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 414.11 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.946610391605044e-17,-6.243443262388126e-17,8.102893356287666e-18)
    sum a = (-8.707097542970387e-17,8.371330972173352e-17,-2.485902109161664e-17)
    sum e = 2.592001548499885
    sum de = 3.2017845406212553e-19
Info: CFL hydro = 0.01119155580070205 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01119155580070205 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6391e+04 |  512 |      1 | 3.124e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1289.3816580502885 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.57825372253591, dt = 0.01119155580070205 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.78 us    (1.0%)
   patch tree reduce : 1363.00 ns (0.4%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 581.00 ns  (0.2%)
   LB compute        : 363.08 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.65 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.755454706574126e-17,-6.080243730374746e-17,7.922861585546448e-18)
    sum a = (9.881841438880156e-17,1.275620234442165e-16,4.656236333999697e-17)
    sum e = 2.5920015505027667
    sum de = 3.4558944247975454e-19
Info: CFL hydro = 0.011195852190193895 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011195852190193895 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6372e+04 |  512 |      1 | 3.127e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1288.3515710123263 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.589445278336612, dt = 0.011195852190193895 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.39 us    (1.1%)
   patch tree reduce : 781.00 ns  (0.2%)
   gen split merge   : 571.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 551.00 ns  (0.1%)
   LB compute        : 367.73 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.991398783350422e-17,-5.908408528057518e-17,8.824484112185393e-18)
    sum a = (2.190825645898009e-17,2.7022329686376966e-17,-2.4847311708153795e-17)
    sum e = 2.592001551894201
    sum de = -7.809643773684649e-19
Info: CFL hydro = 0.011200771315303837 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011200771315303837 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6723e+04 |  512 |      1 | 3.062e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1316.4868554765098 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.600641130526807, dt = 0.011200771315303837 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (0.8%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 331.00 ns  (0.1%)
   LB compute        : 399.00 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.27 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.950855043110326e-17,-5.928607214530923e-17,8.299025529290294e-18)
    sum a = (-1.6349812129168305e-16,-7.313168625365518e-17,-1.7754352675536377e-17)
    sum e = 2.592001552594779
    sum de = -1.8634724839594607e-20
Info: CFL hydro = 0.011205742003248304 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011205742003248304 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6403e+04 |  512 |      1 | 3.121e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1291.8165321104448 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.611841901842112, dt = 0.011205742003248304 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (0.7%)
   patch tree reduce : 701.00 ns  (0.2%)
   gen split merge   : 530.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 701.00 ns  (0.2%)
   LB compute        : 396.03 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.38 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.659437762178809e-17,-6.080390097668031e-17,7.952135044203557e-18)
    sum a = (1.0531419486481397e-16,1.1173240067538504e-16,3.064052917639559e-17)
    sum e = 2.59200155256984
    sum de = 2.1091120386632078e-19
Info: CFL hydro = 0.011210367901367264 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011210367901367264 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6441e+04 |  512 |      1 | 3.114e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1295.4184058518122 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.62304764384536, dt = 0.011210367901367264 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (0.8%)
   patch tree reduce : 491.00 ns  (0.1%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 310.00 ns  (0.1%)
   LB compute        : 391.30 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.26 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.961686222813456e-17,-5.866547482177852e-17,8.681044164765561e-18)
    sum a = (2.3106126387228973e-16,-6.270374844352667e-17,-2.0345053766690491e-19)
    sum e = 2.592001551839198
    sum de = -6.112401505623845e-19
Info: CFL hydro = 0.011214891162845159 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011214891162845159 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7456e+04 |  512 |      1 | 2.933e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1375.958007618531 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.634258011746727, dt = 0.011214891162845159 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.74 us    (0.9%)
   patch tree reduce : 812.00 ns  (0.2%)
   gen split merge   : 611.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 581.00 ns  (0.1%)
   LB compute        : 420.22 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.71 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (72.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.258372726303251e-17,-6.037211746148797e-17,8.531749525614308e-18)
    sum a = (4.998735800287868e-17,-7.428432868827884e-17,-3.6094174524214925e-18)
    sum e = 2.5920015504795746
    sum de = -4.222459242062687e-19
Info: CFL hydro = 0.011219013770465774 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011219013770465774 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7188e+04 |  512 |      1 | 2.979e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1355.3702657212364 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.64547290290957, dt = 0.011219013770465774 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (0.8%)
   patch tree reduce : 491.00 ns  (0.1%)
   gen split merge   : 391.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 341.00 ns  (0.1%)
   LB compute        : 389.14 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 2.20 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.206558704480169e-17,-6.09912511120858e-17,8.3678181571345e-18)
    sum a = (-1.4847498230885493e-16,-2.7364829152665136e-17,4.9075489765709746e-17)
    sum e = 2.592001548608416
    sum de = 6.2680438096818225e-19
Info: CFL hydro = 0.011217985765517594 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011217985765517594 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7485e+04 |  512 |      1 | 2.928e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1379.2654995634873 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.656691916680035, dt = 0.011217985765517594 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (0.8%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 411.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 331.00 ns  (0.1%)
   LB compute        : 387.61 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 2.03 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.952465083336467e-17,-6.12049473602827e-17,9.196257037130672e-18)
    sum a = (1.1641469038758955e-16,7.569530939555146e-17,-7.719850149759399e-17)
    sum e = 2.592001546344165
    sum de = -6.784733907506946e-19
Info: CFL hydro = 0.011217061576528046 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011217061576528046 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7065e+04 |  512 |      1 | 3.000e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1346.0626765433205 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.667909902445555, dt = 0.011217061576528046 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 us    (0.9%)
   patch tree reduce : 501.00 ns  (0.1%)
   gen split merge   : 391.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 331.00 ns  (0.1%)
   LB compute        : 353.04 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 1874.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.224708248847577e-17,-5.996814373201987e-17,7.802108568585874e-18)
    sum a = (-2.096213827518234e-16,2.7200897784185328e-17,9.917555058441829e-17)
    sum e = 2.592001543916069
    sum de = -7.962109704190423e-20
Info: CFL hydro = 0.01121586569000468 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01121586569000468 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7364e+04 |  512 |      1 | 2.949e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1369.523022421435 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.679126964022082, dt = 0.01121586569000468 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (0.8%)
   patch tree reduce : 512.00 ns  (0.1%)
   gen split merge   : 421.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 400.00 ns  (0.1%)
   LB compute        : 384.15 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.05 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.791753795308941e-17,-5.98583682620557e-17,9.870278422710599e-18)
    sum a = (-5.127539018379146e-17,-1.7308810634775184e-16,-5.7171064757333136e-18)
    sum e = 2.592001541512689
    sum de = 7.064254780100865e-19
Info: CFL hydro = 0.011214059705602028 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011214059705602028 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7642e+04 |  512 |      1 | 2.902e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1391.2987134569987 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.690342829712087, dt = 0.011214059705602028 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (0.8%)
   patch tree reduce : 611.00 ns  (0.2%)
   gen split merge   : 401.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 400.00 ns  (0.1%)
   LB compute        : 385.45 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.02 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.817514438927196e-17,-6.272131251872092e-17,9.096727277696504e-18)
    sum a = (3.8840024946251716e-17,-5.402709529755967e-17,-3.25286672597791e-17)
    sum e = 2.5920015393190736
    sum de = -4.1335207826009857e-19
Info: CFL hydro = 0.011212426469921311 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011212426469921311 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7629e+04 |  512 |      1 | 2.904e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1390.0175583078797 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.701556889417688, dt = 0.011212426469921311 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (0.8%)
   patch tree reduce : 491.00 ns  (0.1%)
   gen split merge   : 420.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 411.00 ns  (0.1%)
   LB compute        : 358.43 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 1974.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.913238648735941e-17,-6.287938919546932e-17,8.658357234306302e-18)
    sum a = (-5.272735373318405e-17,1.1484563300356853e-16,1.4019059350889318e-16)
    sum e = 2.5920015375091667
    sum de = -3.9641141931501256e-19
Info: CFL hydro = 0.011211005185948615 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011211005185948615 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6339e+04 |  512 |      1 | 3.134e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1288.1381560677357 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.71276931588761, dt = 0.011211005185948615 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (0.8%)
   patch tree reduce : 491.00 ns  (0.1%)
   gen split merge   : 411.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 380.00 ns  (0.1%)
   LB compute        : 405.38 us  (97.6%)
   LB move op cnt    : 0
   LB apply          : 2.08 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.844446020891735e-17,-6.053165781116921e-17,1.1205879973941179e-17)
    sum a = (-2.1828632651432756e-16,1.5931787139544796e-16,2.458677792610553e-17)
    sum e = 2.5920015362199464
    sum de = 4.743384504624082e-19
Info: CFL hydro = 0.011209829720700079 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011209829720700079 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7152e+04 |  512 |      1 | 2.985e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1352.0396283147313 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.723980321073558, dt = 0.011209829720700079 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (0.8%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 391.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 350.00 ns  (0.1%)
   LB compute        : 378.14 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 1934.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4761859109853095e-17,-5.849715243450015e-17,1.1023652693800679e-17)
    sum a = (6.552570985807193e-17,4.278608717322996e-17,1.6384354810383694e-17)
    sum e = 2.5920015355484507
    sum de = -1.8770250111155296e-18
Info: CFL hydro = 0.011208926852493892 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011208926852493892 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6620e+04 |  512 |      1 | 3.081e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1309.9671686688944 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.735190150794256, dt = 0.011208926852493892 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (0.8%)
   patch tree reduce : 591.00 ns  (0.2%)
   gen split merge   : 430.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 320.00 ns  (0.1%)
   LB compute        : 361.24 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 1904.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.714764599040744e-17,-5.871084868269704e-17,1.1053657988924215e-17)
    sum a = (7.494005416219807e-19,-7.078322303288864e-17,-3.1692910015118646e-17)
    sum e = 2.592001535543764
    sum de = 1.5348237004247922e-18
Info: CFL hydro = 0.011208316334558497 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011208316334558497 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6439e+04 |  512 |      1 | 3.115e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1295.5669193421788 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.74639907764675, dt = 0.011208316334558497 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 us    (0.8%)
   patch tree reduce : 531.00 ns  (0.1%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 341.00 ns  (0.1%)
   LB compute        : 367.91 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 1984.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.685491140383636e-17,-6.026526933738952e-17,1.0433060665393511e-17)
    sum a = (5.8377131254006e-17,-1.2620373496252667e-16,-4.5884682772084906e-17)
    sum e = 2.592001536204968
    sum de = -6.776263578034403e-21
Info: CFL hydro = 0.011208010131799886 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011208010131799886 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6366e+04 |  512 |      1 | 3.129e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1289.7430052723105 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.75760739398131, dt = 0.011208010131799886 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (0.8%)
   patch tree reduce : 490.00 ns  (0.1%)
   gen split merge   : 430.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 330.00 ns  (0.1%)
   LB compute        : 379.79 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 1914.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.756040175747267e-17,-6.213291599971305e-17,9.807340486597815e-18)
    sum a = (1.0468188815782042e-17,-1.6135530411798273e-17,4.651113478734703e-17)
    sum e = 2.592001537481834
    sum de = 1.362028979184915e-18
Info: CFL hydro = 0.011208012058106813 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011208012058106813 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6621e+04 |  512 |      1 | 3.081e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1309.8039387534113 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.76881540411311, dt = 0.011208012058106813 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (0.7%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 401.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 341.00 ns  (0.1%)
   LB compute        : 383.07 us  (97.6%)
   LB move op cnt    : 0
   LB apply          : 1974.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.72705945167673e-17,-6.146548114233097e-17,1.0828252357264479e-17)
    sum a = (-2.6483112577913026e-16,5.894503635195392e-17,-1.0916072733235804e-17)
    sum e = 2.59200153927936
    sum de = -1.6940658945086007e-20
Info: CFL hydro = 0.011208317647155321 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011208317647155321 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6650e+04 |  512 |      1 | 3.075e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1312.1170576329719 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.780023416171215, dt = 0.011208317647155321 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (0.8%)
   patch tree reduce : 481.00 ns  (0.1%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 331.00 ns  (0.1%)
   LB compute        : 363.02 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 1864.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2976178131769466e-17,-6.051409373597494e-17,1.0302793774369379e-17)
    sum a = (-1.7212793690379868e-18,-8.728174433203506e-17,2.2300520804985347e-17)
    sum e = 2.592001541465589
    sum de = -3.2187251995663413e-19
Info: CFL hydro = 0.011208914199212614 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011208914199212614 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6484e+04 |  512 |      1 | 3.106e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1299.0701004885782 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.79123173381837, dt = 0.011208914199212614 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (0.9%)
   patch tree reduce : 501.00 ns  (0.1%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 642.00 ns  (0.2%)
   LB compute        : 359.21 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 1993.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4117843019396705e-17,-6.20685143906674e-17,1.0894849475709401e-17)
    sum a = (-5.642751890744258e-17,-9.477574974825487e-17,-2.2995765448091676e-17)
    sum e = 2.5920015438819566
    sum de = 2.812149384884277e-19
Info: CFL hydro = 0.011207416926057855 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011207416926057855 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6402e+04 |  512 |      1 | 3.122e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1292.6781065846894 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.802440648017583, dt = 0.011207416926057855 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 us    (0.8%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 421.00 ns  (0.1%)
   LB compute        : 356.56 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.00 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.336844247777472e-17,-6.335361922571447e-17,1.0333530905959343e-17)
    sum a = (-1.3255900283698497e-16,3.487054395234779e-17,-8.710463990715955e-17)
    sum e = 2.5920015463379102
    sum de = -1.0198276684941776e-18
Info: CFL hydro = 0.011203340292537797 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011203340292537797 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6331e+04 |  512 |      1 | 3.135e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1286.9569764547766 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.813648064943642, dt = 0.011203340292537797 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 us    (0.8%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 331.00 ns  (0.1%)
   LB compute        : 386.83 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 1984.00 ns (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1328082409374255e-17,-6.217975353356441e-17,9.084286057767233e-18)
    sum a = (1.5088199244693568e-16,-6.286767981200647e-17,-6.234661224790994e-17)
    sum e = 2.5920015486529446
    sum de = 3.9641141931501256e-19
Info: CFL hydro = 0.011199422279451568 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011199422279451568 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6519e+04 |  512 |      1 | 3.099e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1301.2928630537258 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.82485140523618, dt = 0.011199422279451568 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.24 us    (1.1%)
   patch tree reduce : 1293.00 ns (0.3%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 364.48 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.471209423013601e-17,-6.332434576705736e-17,8.604933172257079e-18)
    sum a = (5.832736637428893e-17,6.006913716438688e-18,-8.167294965333305e-18)
    sum e = 2.5920015506866547
    sum de = -1.7957098481791167e-19
Info: CFL hydro = 0.011195735225550863 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011195735225550863 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6291e+04 |  512 |      1 | 3.143e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1282.8702816018686 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.83605082751563, dt = 0.011195735225550863 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.91 us    (1.0%)
   patch tree reduce : 1002.00 ns (0.3%)
   gen split merge   : 702.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 601.00 ns  (0.2%)
   LB compute        : 382.11 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.475307707225596e-17,-6.293793611278353e-17,8.659820907239157e-18)
    sum a = (9.439812213157816e-17,3.357080238797217e-17,1.3896110824529463e-17)
    sum e = 2.592001552306179
    sum de = -7.013432803265607e-19
Info: CFL hydro = 0.01119143889614495 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01119143889614495 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6320e+04 |  512 |      1 | 3.137e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1284.7250325497796 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.847246562741184, dt = 0.01119143889614495 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.19 us    (1.1%)
   patch tree reduce : 1252.00 ns (0.3%)
   gen split merge   : 611.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.2%)
   LB compute        : 361.05 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.611722024567723e-17,-6.2416868548687e-17,8.91815917988814e-18)
    sum a = (8.898545962587878e-17,-1.273161263914968e-16,1.150007823344512e-16)
    sum e = 2.592001553405261
    sum de = 3.6930636500287495e-19
Info: CFL hydro = 0.011185662541335233 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011185662541335233 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6486e+04 |  512 |      1 | 3.106e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1297.2996339222782 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.858438001637328, dt = 0.011185662541335233 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (0.8%)
   patch tree reduce : 581.00 ns  (0.2%)
   gen split merge   : 472.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 701.00 ns  (0.2%)
   LB compute        : 360.13 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.48 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.711251784001892e-17,-6.472361709086716e-17,1.0689203428643213e-17)
    sum a = (1.45102679871556e-16,-1.6826384036106034e-17,-2.061436958633589e-17)
    sum e = 2.5920015539199204
    sum de = -2.778268066994105e-19
Info: CFL hydro = 0.01117995283387202 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01117995283387202 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6360e+04 |  512 |      1 | 3.130e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1286.6903638334582 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.869623664178665, dt = 0.01117995283387202 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (0.8%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 341.00 ns  (0.1%)
   LB compute        : 349.12 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.13 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.903285672792524e-17,-6.430207928620479e-17,9.804413140732104e-18)
    sum a = (-2.1639526108507834e-16,-8.19832483150984e-17,1.5091931610672348e-17)
    sum e = 2.5920015538531005
    sum de = 2.202285662861181e-19
Info: CFL hydro = 0.011174403474705786 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011174403474705786 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6617e+04 |  512 |      1 | 3.081e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1306.2378769539782 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.880803617012536, dt = 0.011174403474705786 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (0.5%)
   patch tree reduce : 451.00 ns  (0.1%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 321.00 ns  (0.1%)
   LB compute        : 550.24 us  (98.2%)
   LB move op cnt    : 0
   LB apply          : 2.38 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.470623953840459e-17,-6.55725473919233e-17,1.0056164885183239e-17)
    sum a = (-2.6381240941786286e-17,2.9021706912657485e-17,-2.9866246194915066e-17)
    sum e = 2.5920015532418486
    sum de = 7.115076756936123e-20
Info: CFL hydro = 0.011169106618723727 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011169106618723727 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6247e+04 |  512 |      1 | 3.151e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1276.5011893368041 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.89197802048724, dt = 0.011169106618723727 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.79 us    (1.0%)
   patch tree reduce : 1053.00 ns (0.3%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 367.26 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.5382456433383796e-17,-6.48172921585699e-17,9.41141695826042e-18)
    sum a = (3.881660617932603e-17,-8.314247727791991e-17,-9.681610981665534e-17)
    sum e = 2.592001552165
    sum de = -9.114074512456272e-19
Info: CFL hydro = 0.011164151592237275 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011164151592237275 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6386e+04 |  512 |      1 | 3.125e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1286.8032567253797 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.903147127105964, dt = 0.011164151592237275 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.49 us    (0.9%)
   patch tree reduce : 681.00 ns  (0.2%)
   gen split merge   : 682.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 510.00 ns  (0.1%)
   LB compute        : 360.66 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.38 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.608794678702012e-17,-6.623412755757397e-17,8.116798249149792e-18)
    sum a = (-1.6873221569957407e-17,1.862523807058536e-16,-5.477064114745022e-18)
    sum e = 2.592001550736094
    sum de = 5.573476792933296e-19
Info: CFL hydro = 0.011159622958478815 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011159622958478815 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6418e+04 |  512 |      1 | 3.119e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1288.7641277580656 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.9143112786982, dt = 0.011159622958478815 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.47 us    (0.9%)
   patch tree reduce : 681.00 ns  (0.2%)
   gen split merge   : 642.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 711.00 ns  (0.2%)
   LB compute        : 388.64 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.561664410264066e-17,-6.258665460889823e-17,8.327567151480975e-18)
    sum a = (-1.0074753531430502e-16,7.513033164346928e-17,5.400660387649969e-17)
    sum e = 2.5920015490935473
    sum de = 1.1722935989999517e-18
Info: CFL hydro = 0.011155599323006355 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011155599323006355 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6261e+04 |  512 |      1 | 3.149e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1275.974778781125 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.92547090165668, dt = 0.011155599323006355 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.78 us    (1.0%)
   patch tree reduce : 732.00 ns  (0.2%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 821.00 ns  (0.2%)
   LB compute        : 363.80 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4217372778830875e-17,-6.229392002232714e-17,9.407025939461855e-18)
    sum a = (-5.519803364384401e-17,2.522054830603193e-17,-1.004694374570625e-16)
    sum e = 2.592001547390575
    sum de = 3.006966962752766e-19
Info: CFL hydro = 0.01115215243003407 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01115215243003407 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6348e+04 |  512 |      1 | 3.132e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1282.2892746668774 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.93662650097969, dt = 0.01115215243003407 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.97 us    (1.0%)
   patch tree reduce : 892.00 ns  (0.2%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 367.52 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.3757779477914266e-17,-6.245199669907553e-17,7.485589296855887e-18)
    sum a = (1.4660148095479998e-17,-3.1632899424871575e-17,4.785039552090975e-17)
    sum e = 2.592001545781695
    sum de = 3.3881317890172014e-20
Info: CFL hydro = 0.01114934569454938 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01114934569454938 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6625e+04 |  512 |      1 | 3.080e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1303.653165954666 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.947778653409724, dt = 0.01114934569454938 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.81 us    (1.0%)
   patch tree reduce : 1042.00 ns (0.3%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 373.91 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.65 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4261282966816535e-17,-6.310772217299477e-17,8.738127409146923e-18)
    sum a = (7.803133139638874e-17,1.6819065671441758e-16,3.338345225256667e-17)
    sum e = 2.5920015444112665
    sum de = 3.4537768424294096e-19
Info: CFL hydro = 0.011147222559946261 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011147222559946261 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6013e+04 |  512 |      1 | 3.197e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1255.3512565845776 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.958927999104272, dt = 0.011147222559946261 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (0.5%)
   patch tree reduce : 1202.00 ns (0.1%)
   gen split merge   : 852.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.1%)
   LB compute        : 927.42 us  (98.1%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.26 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498046875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.559615268158069e-17,-5.999888086360982e-17,9.170642760805703e-18)
    sum a = (-1.4993865524171036e-16,-6.22002449546244e-17,1.317393459945859e-16)
    sum e = 2.5920015434031947
    sum de = -1.053497228147536e-19
Info: CFL hydro = 0.011140838207108908 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011140838207108908 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6810e+04 |  512 |      1 | 3.046e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1317.5836578855078 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.970075221664217, dt = 0.011140838207108908 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.84 us    (1.0%)
   patch tree reduce : 962.00 ns  (0.2%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 511.00 ns  (0.1%)
   LB compute        : 387.73 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.27419904625126e-17,-6.207729642826454e-17,1.1060244517122064e-17)
    sum a = (2.925003989018293e-17,7.280894637196056e-17,-2.252007174491366e-17)
    sum e = 2.59200154281734
    sum de = -9.114074512456272e-19
Info: CFL hydro = 0.01113433928016205 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01113433928016205 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7445e+04 |  512 |      1 | 2.935e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1366.5258168935277 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.981216059871326, dt = 0.01113433928016205 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.54 us    (1.0%)
   patch tree reduce : 1072.00 ns (0.3%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 621.00 ns  (0.2%)
   LB compute        : 348.82 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 2.44 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.392317451932693e-17,-6.060776880367769e-17,9.934680031756237e-18)
    sum a = (1.922680764598894e-17,-2.1621376564140426e-17,9.317449155971103e-17)
    sum e = 2.5920015427365524
    sum de = -7.148958074826295e-19
Info: CFL hydro = 0.011129141265130841 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011129141265130841 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7197e+04 |  512 |      1 | 2.977e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1346.2859353265244 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.992350399151487, dt = 0.007649600848512961 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (0.9%)
   patch tree reduce : 551.00 ns  (0.1%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 591.00 ns  (0.1%)
   LB compute        : 382.26 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.62 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4158825861516656e-17,-6.116396451816275e-17,1.1243569551962207e-17)
    sum a = (-1.6578145106693754e-16,4.132826893210595e-17,3.1571425161691646e-17)
    sum e = 2.5920015237599645
    sum de = 9.147955830346444e-20
Info: CFL hydro = 0.011126693738568826 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011126693738568826 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7314e+04 |  512 |      1 | 2.957e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 931.258355796407 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 2248                                                    [SPH][rank=0]
Info: time since start : 814.253877479 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.1499149457800839 max=0.1500824399778852 delta=0.00016749419780129338
Number of particle pairs: 130816
Distance min=0.126707 max=1.845631 mean=0.800519
---------------- t = 21, dt = 0.011126693738568826 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.03 us   (1.4%)
   patch tree reduce : 1533.00 ns (0.2%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.1%)
   LB compute        : 707.37 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.05 us    (79.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.167497289446099e-17,-6.061947818714053e-17,1.1638395325599959e-17)
    sum a = (-3.191977931971124e-17,-3.037999539434733e-17,1.1325901154435324e-17)
    sum e = 2.592001543439294
    sum de = -1.4416500762268192e-18
Info: CFL hydro = 0.011123428942693674 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011123428942693674 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5407e+04 |  512 |      1 | 3.323e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1205.3612161061149 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.011126693738568, dt = 0.011123428942693674 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.2%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 388.56 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.187695975919504e-17,-6.128105835279118e-17,1.1417746630972003e-17)
    sum a = (2.5245430745890472e-17,2.3219707406818556e-17,4.357647055697189e-17)
    sum e = 2.5920015448349454
    sum de = 9.75781955236954e-19
Info: CFL hydro = 0.01112171901050676 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01112171901050676 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6370e+04 |  512 |      1 | 3.128e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1280.290924259128 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.02225012268126, dt = 0.01112171901050676 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.03 us    (1.0%)
   patch tree reduce : 1022.00 ns (0.3%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 601.00 ns  (0.2%)
   LB compute        : 376.81 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.85 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.242876445488154e-17,-6.078340955562034e-17,1.2134946368071164e-17)
    sum a = (-1.0723453375272029e-16,-1.2284314190869061e-16,-6.289109857893216e-17)
    sum e = 2.5920015464439627
    sum de = -4.0826988057657276e-19
Info: CFL hydro = 0.01112107249670947 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01112107249670947 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6290e+04 |  512 |      1 | 3.143e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1273.901924580141 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.033371841691768, dt = 0.01112107249670947 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.51 us    (0.8%)
   patch tree reduce : 641.00 ns  (0.1%)
   gen split merge   : 571.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 591.00 ns  (0.1%)
   LB compute        : 421.63 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.56 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.041328682633961e-17,-6.302575648875485e-17,1.088295713312995e-17)
    sum a = (-1.8575765925454845e-16,1.5632026922896004e-17,-2.2935754857844602e-17)
    sum e = 2.5920015482976213
    sum de = 3.8963515573697816e-20
Info: CFL hydro = 0.011121711087242223 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011121711087242223 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7165e+04 |  512 |      1 | 2.983e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1342.2265478204263 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.044492914188478, dt = 0.011121711087242223 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.48 us    (0.9%)
   patch tree reduce : 571.00 ns  (0.1%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 471.00 ns  (0.1%)
   LB compute        : 369.29 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.58 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7832831445715485e-17,-6.192800178911328e-17,1.0698717302706773e-17)
    sum a = (6.588870074542008e-17,-1.8316988550926005e-16,5.784435430644663e-18)
    sum e = 2.5920015502586153
    sum de = -1.1079190950086248e-18
Info: CFL hydro = 0.011123597503218771 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011123597503218771 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6558e+04 |  512 |      1 | 3.092e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1294.840519157632 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.05561462527572, dt = 0.011123597503218771 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (0.8%)
   patch tree reduce : 611.00 ns  (0.2%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 441.00 ns  (0.1%)
   LB compute        : 377.77 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.11 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.00063857510058e-17,-6.485827500068986e-17,1.107122206411848e-17)
    sum a = (6.290866265412643e-17,4.21771992331621e-17,8.771206417429455e-17)
    sum e = 2.5920015521807076
    sum de = 6.844026213814747e-19
Info: CFL hydro = 0.0111266779583124 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.0111266779583124 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6861e+04 |  512 |      1 | 3.037e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1318.749983915728 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.066738222778937, dt = 0.0111266779583124 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (0.8%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 311.00 ns  (0.1%)
   LB compute        : 365.68 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.10 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.042938722860102e-17,-6.334483718811735e-17,1.2443049520437233e-17)
    sum a = (9.674292617001256e-17,1.1030239221998528e-17,2.2402977910285227e-17)
    sum e = 2.5920015539206744
    sum de = -3.083199928005653e-19
Info: CFL hydro = 0.01113088339285419 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01113088339285419 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6944e+04 |  512 |      1 | 3.022e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1325.6390345734635 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.07786490073725, dt = 0.01113088339285419 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (0.8%)
   patch tree reduce : 521.00 ns  (0.1%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 320.00 ns  (0.1%)
   LB compute        : 382.38 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.18 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1975025845696353e-17,-6.342387552649153e-17,1.2325635507354736e-17)
    sum a = (1.489784857977572e-16,-1.022229176306233e-16,8.401482634590173e-18)
    sum e = 2.5920015553488893
    sum de = 8.673617379884035e-19
Info: CFL hydro = 0.01113613079571728 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01113613079571728 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6492e+04 |  512 |      1 | 3.105e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1290.742518247108 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.088995784130105, dt = 0.01113613079571728 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.65 us    (1.0%)
   patch tree reduce : 581.00 ns  (0.2%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 481.00 ns  (0.1%)
   LB compute        : 363.78 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.31 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.377095253430997e-17,-6.523297527150085e-17,1.2601743684204167e-17)
    sum a = (-5.0646010822663624e-17,-3.3605930538360693e-17,-1.1560088823692194e-17)
    sum e = 2.5920015563593823
    sum de = 1.0706496453294356e-18
Info: CFL hydro = 0.011142325659251077 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011142325659251077 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6285e+04 |  512 |      1 | 3.144e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1275.1299671164697 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.10013191492582, dt = 0.011142325659251077 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.08 us    (1.0%)
   patch tree reduce : 982.00 ns  (0.2%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 521.00 ns  (0.1%)
   LB compute        : 384.32 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.234240775184307e-17,-6.51393002037981e-17,1.2337504980044611e-17)
    sum a = (-1.5775466870315834e-17,4.300856545902398e-17,-6.929027664137611e-17)
    sum e = 2.5920015568778774
    sum de = -4.675621868843738e-19
Info: CFL hydro = 0.011149362233585767 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011149362233585767 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6376e+04 |  512 |      1 | 3.127e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1282.9408976410243 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.11127424058507, dt = 0.011149362233585767 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (0.8%)
   patch tree reduce : 561.00 ns  (0.1%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 330.00 ns  (0.1%)
   LB compute        : 383.93 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.41 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.227654246986457e-17,-6.4249387060622e-17,1.1085309916097214e-17)
    sum a = (-3.9727010743562105e-17,-3.6626951471774306e-17,1.8445206299844142e-17)
    sum e = 2.592001556868366
    sum de = 7.013432803265607e-19
Info: CFL hydro = 0.01115712523967585 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01115712523967585 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6247e+04 |  512 |      1 | 3.151e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1273.6885926446068 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.122423602818657, dt = 0.01115712523967585 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.32 us    (0.8%)
   patch tree reduce : 791.00 ns  (0.2%)
   gen split merge   : 611.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 490.00 ns  (0.1%)
   LB compute        : 407.37 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.90 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.154177865757115e-17,-6.512759082033526e-17,1.1803287229441953e-17)
    sum a = (1.2968874021565546e-16,-5.532683686193529e-17,-9.879792296774159e-18)
    sum e = 2.592001556336371
    sum de = -3.9641141931501256e-19
Info: CFL hydro = 0.01116549174892521 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01116549174892521 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6613e+04 |  512 |      1 | 3.082e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1303.2421980433046 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.133580728058334, dt = 0.01116549174892521 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.34 us    (1.1%)
   patch tree reduce : 1192.00 ns (0.3%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 377.96 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 2.77 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.39012194253341e-17,-6.585942728676298e-17,1.1628698492419793e-17)
    sum a = (-1.728809966277528e-16,1.8526586514910904e-16,-6.175821572890206e-17)
    sum e = 2.592001555327397
    sum de = 7.962109704190423e-19
Info: CFL hydro = 0.011168611806244918 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011168611806244918 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5647e+04 |  512 |      1 | 3.272e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1228.3904392114011 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.14474621980726, dt = 0.011168611806244918 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1512.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 375.53 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.040304111580962e-17,-6.231441144338712e-17,1.0604218918979294e-17)
    sum a = (-5.477356849331594e-17,9.066575615279682e-17,-4.8077264825502343e-17)
    sum e = 2.5920015538808654
    sum de = 9.317362419797304e-19
Info: CFL hydro = 0.011165166449617464 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011165166449617464 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4036e+04 |  512 |      1 | 3.648e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1102.1998408087031 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.155914831613504, dt = 0.011165166449617464 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.3%)
   LB compute        : 395.11 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (13.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0619664709872227e-17,-6.198947605229321e-17,1.0196128609387539e-17)
    sum a = (7.409112386114192e-17,1.956345242054569e-17,2.9406652893998464e-17)
    sum e = 2.592001552109177
    sum de = 4.336808689942018e-19
Info: CFL hydro = 0.011162104803581095 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011162104803581095 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2512e+04 |  512 |      1 | 4.092e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 982.2280134423714 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.167079998063123, dt = 0.011162104803581095 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.2%)
   patch tree reduce : 1582.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.3%)
   LB compute        : 426.04 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 5.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.202552256187987e-17,-6.225879187193861e-17,1.106015303756376e-17)
    sum a = (-1.2090523894559002e-16,-8.614007944440782e-17,1.983642742252323e-17)
    sum e = 2.5920015502098117
    sum de = 3.6253010142484055e-19
Info: CFL hydro = 0.011159468722097225 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011159468722097225 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5670e+04 |  512 |      1 | 3.267e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1229.806135870828 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.178242102866704, dt = 0.011159468722097225 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.19 us    (1.0%)
   patch tree reduce : 1363.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 414.88 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9782443792278916e-17,-6.359951627843418e-17,1.1056219416556711e-17)
    sum a = (-6.393323370712522e-18,6.219439026289297e-17,6.028246749435056e-17)
    sum e = 2.5920015483341943
    sum de = 1.5246593050577406e-19
Info: CFL hydro = 0.01115729340180434 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01115729340180434 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5533e+04 |  512 |      1 | 3.296e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1218.8039740541003 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.189401571588803, dt = 0.01115729340180434 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (1.1%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 761.00 ns  (0.2%)
   LB compute        : 406.84 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.026838320598692e-17,-6.208900581172738e-17,1.192070124252445e-17)
    sum a = (5.874597683308558e-17,2.478510560850744e-17,-5.661596679754771e-17)
    sum e = 2.592001546633213
    sum de = 5.285485590866834e-19
Info: CFL hydro = 0.011155607524487469 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011155607524487469 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4103e+04 |  512 |      1 | 3.631e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1106.3445878234568 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.200558864990608, dt = 0.011155607524487469 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (1.1%)
   patch tree reduce : 1233.00 ns (0.3%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.2%)
   LB compute        : 394.50 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0946063773898986e-17,-6.207144173653312e-17,1.0815079300868779e-17)
    sum a = (-1.5972184512491605e-16,1.5878802179375428e-16,-4.8739576827619424e-17)
    sum e = 2.59200154524519
    sum de = -7.589415207398531e-19
Info: CFL hydro = 0.011154430828353445 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011154430828353445 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5986e+04 |  512 |      1 | 3.203e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1253.896892256473 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.211714472515094, dt = 0.011154430828353445 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.87 us    (1.0%)
   patch tree reduce : 932.00 ns  (0.2%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 384.95 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.830413413009493e-17,-5.953050552509609e-17,1.0205459524334492e-17)
    sum a = (8.534384136893447e-17,1.6009947274159274e-16,2.6464670298959048e-17)
    sum e = 2.5920015442856066
    sum de = -3.4389537658524594e-19
Info: CFL hydro = 0.011153775712210465 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011153775712210465 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6011e+04 |  512 |      1 | 3.198e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1255.7173887573442 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.222868903343446, dt = 0.011153775712210465 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (1.1%)
   patch tree reduce : 1122.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.3%)
   LB compute        : 409.46 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.03576672548911e-17,-5.775946127634101e-17,1.1028867028623976e-17)
    sum a = (-2.8840211468983414e-17,4.581881749010641e-17,1.612967572006685e-17)
    sum e = 2.592001543838498
    sum de = 5.759824041329242e-19
Info: CFL hydro = 0.011153644575116228 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011153644575116228 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5993e+04 |  512 |      1 | 3.201e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1254.2871561415518 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.234022679055656, dt = 0.011153644575116228 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.85 us    (1.0%)
   patch tree reduce : 1122.00 ns (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 388.35 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.955118346888776e-17,-5.796730283280649e-17,1.0949554251574872e-17)
    sum a = (1.0935393215949496e-16,-1.168596469591776e-17,-3.586145052789092e-17)
    sum e = 2.592001543950272
    sum de = 4.404571325722362e-19
Info: CFL hydro = 0.011153732785528142 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011153732785528142 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6098e+04 |  512 |      1 | 3.180e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1262.4970965741013 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.245176323630773, dt = 0.011153732785528142 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.46 us    (0.8%)
   patch tree reduce : 942.00 ns  (0.2%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 408.45 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.81 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.130027262365e-17,-5.856448138941151e-17,1.0262359809599247e-17)
    sum a = (3.612344798287204e-17,1.5444091318317364e-16,-1.1058634476895924e-16)
    sum e = 2.592001544624874
    sum de = 1.8804131429045468e-19
Info: CFL hydro = 0.011153683332491861 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011153683332491861 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6220e+04 |  512 |      1 | 3.157e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1272.0789936787778 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.2563300564163, dt = 0.011153683332491861 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (0.8%)
   patch tree reduce : 601.00 ns  (0.1%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 402.28 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.60 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.155787905983256e-17,-5.600890844864592e-17,8.569530583193638e-18)
    sum a = (9.492797173327184e-17,-2.997602166487923e-17,-2.4984896963842206e-17)
    sum e = 2.5920015458242966
    sum de = -4.2859867131067597e-19
Info: CFL hydro = 0.011154152174546423 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011154152174546423 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6198e+04 |  512 |      1 | 3.161e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1270.3078124158787 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.26748373974879, dt = 0.011154152174546423 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.40 us    (0.7%)
   patch tree reduce : 631.00 ns  (0.1%)
   gen split merge   : 601.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 761.00 ns  (0.2%)
   LB compute        : 464.30 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.77 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.294690467311236e-17,-5.71066631482875e-17,8.809298505507018e-18)
    sum a = (1.295233451742428e-16,-5.2089192334459077e-17,-2.3087976842861567e-17)
    sum e = 2.592001547477979
    sum de = -4.1165801236558996e-19
Info: CFL hydro = 0.011155127606308615 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011155127606308615 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6154e+04 |  512 |      1 | 3.170e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1266.8921644587217 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.27863789192334, dt = 0.011155127606308615 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.22 us    (1.0%)
   patch tree reduce : 1022.00 ns (0.2%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.2%)
   LB compute        : 409.51 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.487163457981725e-17,-5.779458942672955e-17,8.680380937967862e-18)
    sum a = (-1.6123821028335429e-16,-1.735564816862656e-16,-2.7461431566233597e-17)
    sum e = 2.592001549479133
    sum de = -1.7135476522954496e-18
Info: CFL hydro = 0.01115659046091033 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01115659046091033 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5822e+04 |  512 |      1 | 3.236e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1241.0086964088264 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.289793019529647, dt = 0.01115659046091033 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (0.9%)
   patch tree reduce : 951.00 ns  (0.3%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 711.00 ns  (0.2%)
   LB compute        : 365.39 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.75 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.478515625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1311982007112843e-17,-6.061655084127481e-17,8.352358111781214e-18)
    sum a = (1.275620234442165e-16,-8.760960706899468e-17,8.274435824018323e-17)
    sum e = 2.592001551696132
    sum de = 7.22095587534291e-19
Info: CFL hydro = 0.01115851409512182 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01115851409512182 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5554e+04 |  512 |      1 | 3.292e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1220.1566510073314 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.300949609990557, dt = 0.01115851409512182 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.29 us    (1.0%)
   patch tree reduce : 1131.00 ns (0.3%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.2%)
   LB compute        : 411.22 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4037341008089656e-17,-6.112883636777422e-17,9.792520798152655e-18)
    sum a = (-6.25515264585097e-17,-8.034978932203174e-17,-2.3055776038338747e-17)
    sum e = 2.5920015539827963
    sum de = 7.204015216397824e-19
Info: CFL hydro = 0.011160864957931985 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011160864957931985 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5838e+04 |  512 |      1 | 3.233e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1242.5900360505675 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.31210812408568, dt = 0.011160864957931985 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (0.8%)
   patch tree reduce : 711.00 ns  (0.2%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 405.30 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.230727960145454e-17,-6.169381411985641e-17,8.895472249428882e-18)
    sum a = (-1.0286693372107969e-17,-1.4373268200640333e-16,3.940793004419962e-17)
    sum e = 2.592001556189389
    sum de = -9.197719015997634e-19
Info: CFL hydro = 0.01115779612500251 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01115779612500251 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5994e+04 |  512 |      1 | 3.201e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1255.1411031994949 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.323268989043612, dt = 0.01115779612500251 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.54 us    (0.9%)
   patch tree reduce : 752.00 ns  (0.2%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 661.00 ns  (0.2%)
   LB compute        : 385.01 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.80 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.276248188357257e-17,-6.377222968451113e-17,9.809170077763884e-18)
    sum a = (3.4987637786976223e-17,-3.3804990057229033e-17,-1.8266638202035778e-17)
    sum e = 2.5920015581286178
    sum de = 9.497356921088843e-20
Info: CFL hydro = 0.011152141668517974 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011152141668517974 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5860e+04 |  512 |      1 | 3.228e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1244.2498624199502 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.334426785168613, dt = 0.011152141668517974 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.05 us    (1.0%)
   patch tree reduce : 1123.00 ns (0.3%)
   gen split merge   : 591.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 406.32 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 2.85 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (72.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.312547277092072e-17,-6.344436694755152e-17,9.232848860452059e-18)
    sum a = (-7.138040158949365e-17,-1.2774937357962202e-17,6.921416564886762e-17)
    sum e = 2.5920015596941064
    sum de = 9.579942633446137e-19
Info: CFL hydro = 0.011146907311134458 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011146907311134458 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5812e+04 |  512 |      1 | 3.238e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1239.8754077010724 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.34557892683713, dt = 0.011146907311134458 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.26 us    (1.0%)
   patch tree reduce : 1132.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 410.83 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.167936391325956e-17,-6.351169590246286e-17,1.051539226786663e-17)
    sum a = (2.3860796151409236e-17,-1.405945672383613e-16,5.4618419162433265e-17)
    sum e = 2.5920015608150884
    sum de = 1.9244588561617704e-18
Info: CFL hydro = 0.011142192321025092 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011142192321025092 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5960e+04 |  512 |      1 | 3.208e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1250.8577117754155 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.356725834148264, dt = 0.011142192321025092 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (1.2%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 375.07 us  (95.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    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.199551726675633e-17,-6.574818814386596e-17,1.0841425413660178e-17)
    sum a = (-4.924673949885383e-17,-3.4484134298073954e-17,2.4133039316920345e-17)
    sum e = 2.5920015614350205
    sum de = -5.243133943504119e-19
Info: CFL hydro = 0.011138089699271202 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011138089699271202 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5761e+04 |  512 |      1 | 3.248e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1234.8077057259381 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.36786802646929, dt = 0.011138089699271202 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.12 us    (1.0%)
   patch tree reduce : 1272.00 ns (0.3%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 379.97 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.170278268018524e-17,-6.544374417383203e-17,1.1138916937263044e-17)
    sum a = (6.725284391884134e-17,-1.3600448892092664e-17,-8.418461240611297e-17)
    sum e = 2.5920015615347927
    sum de = 6.318865786517081e-19
Info: CFL hydro = 0.011134685413974176 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011134685413974176 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6077e+04 |  512 |      1 | 3.185e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1259.0591383064334 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.37900611616856, dt = 0.011134685413974176 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.44 us    (0.9%)
   patch tree reduce : 701.00 ns  (0.2%)
   gen split merge   : 692.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 382.59 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2900067139260984e-17,-6.568964122655174e-17,9.541683849284555e-18)
    sum a = (1.4393540070760379e-16,-9.142101138615022e-17,-1.2381502073610661e-16)
    sum e = 2.5920015611358407
    sum de = -7.148958074826295e-19
Info: CFL hydro = 0.011132060487762047 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011132060487762047 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6115e+04 |  512 |      1 | 3.177e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1261.6268493684333 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.390140801582536, dt = 0.011132060487762047 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.75 us    (0.9%)
   patch tree reduce : 952.00 ns  (0.2%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 390.33 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4843824794092996e-17,-6.691327179841888e-17,8.106552538619805e-18)
    sum a = (-8.846000104298368e-17,-2.2048769060534213e-17,5.932559131449633e-17)
    sum e = 2.592001560297575
    sum de = 1.4145450219146816e-18
Info: CFL hydro = 0.011130277768313823 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011130277768313823 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6265e+04 |  512 |      1 | 3.148e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1273.119190699937 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.401272862070297, dt = 0.011130277768313823 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.48 us    (0.8%)
   patch tree reduce : 561.00 ns  (0.1%)
   gen split merge   : 621.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.3%)
   LB compute        : 404.68 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.46 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.242876445488154e-17,-6.679032327205903e-17,9.740743368152893e-18)
    sum a = (-8.942895252453398e-17,2.105932615792394e-17,-6.126934896932834e-17)
    sum e = 2.592001559108959
    sum de = 5.89534931288993e-19
Info: CFL hydro = 0.011129389683480513 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011129389683480513 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5907e+04 |  512 |      1 | 3.219e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1244.9090884835164 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.41240313983861, dt = 0.011129389683480513 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.82 us    (1.0%)
   patch tree reduce : 761.00 ns  (0.2%)
   gen split merge   : 591.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 377.28 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.168229125912527e-17,-6.626925570796249e-17,8.364890811268788e-18)
    sum a = (-6.905608897211923e-18,-5.373436071098858e-17,5.2358508154104474e-17)
    sum e = 2.5920015576849513
    sum de = 1.6906777627195835e-18
Info: CFL hydro = 0.01112943606102747 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01112943606102747 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5456e+04 |  512 |      1 | 3.313e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1209.4879571806025 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.423532529522088, dt = 0.01112943606102747 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.22 us    (1.0%)
   patch tree reduce : 822.00 ns  (0.2%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 411.36 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2212140860818934e-17,-6.731139083615556e-17,9.428249196988259e-18)
    sum a = (2.4651179535151168e-17,4.097698742822064e-17,2.326654494066993e-17)
    sum e = 2.5920015561554295
    sum de = -2.1006417091906648e-19
Info: CFL hydro = 0.011130444253768494 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011130444253768494 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6054e+04 |  512 |      1 | 3.189e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1256.3229651031274 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.434661965583114, dt = 0.011130444253768494 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.10 us    (1.0%)
   patch tree reduce : 1182.00 ns (0.3%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 388.35 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (73.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.224434166534175e-17,-6.619899940718543e-17,9.704883381297934e-18)
    sum a = (3.3439071824015175e-17,-3.033315786049595e-17,-2.6032886783766694e-17)
    sum e = 2.592001554655272
    sum de = -1.9481757786848908e-19
Info: CFL hydro = 0.011132429701890639 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011132429701890639 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5783e+04 |  512 |      1 | 3.244e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1235.1979546608636 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.445792409836884, dt = 0.011132429701890639 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.79 us    (0.9%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 394.50 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.3131327462652146e-17,-6.727040799403561e-17,8.98914731713163e-18)
    sum a = (5.67026894188194e-17,-1.2466248736422992e-16,3.7171437802796526e-17)
    sum e = 2.5920015533139305
    sum de = 8.300922883092143e-20
Info: CFL hydro = 0.011135392927849385 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011135392927849385 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6568e+04 |  512 |      1 | 3.090e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1296.8304685541557 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.456924839538775, dt = 0.011135392927849385 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 us    (0.8%)
   patch tree reduce : 512.00 ns  (0.1%)
   gen split merge   : 611.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 375.91 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.58 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.3713869289928607e-17,-6.912634527289629e-17,9.851982511049906e-18)
    sum a = (6.97205964836356e-17,1.3811510529010417e-16,2.1846782195800163e-17)
    sum e = 2.5920015522477233
    sum de = -6.776263578034403e-20
Info: CFL hydro = 0.011139320287005077 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011139320287005077 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6196e+04 |  512 |      1 | 3.161e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1268.049424417665 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.468060232466623, dt = 0.011139320287005077 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (1.1%)
   patch tree reduce : 1223.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1293.00 ns (0.3%)
   LB compute        : 384.69 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.434324865105644e-17,-6.616972594852832e-17,9.967612672745485e-18)
    sum a = (7.964722631426113e-17,1.6492959342001566e-16,-7.644178259130774e-17)
    sum e = 2.5920015515487917
    sum de = 7.453889935837843e-19
Info: CFL hydro = 0.011144184088649143 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011144184088649143 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5937e+04 |  512 |      1 | 3.213e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1248.257581866286 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.479199552753627, dt = 0.011144184088649143 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (0.8%)
   patch tree reduce : 972.00 ns  (0.2%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 651.00 ns  (0.2%)
   LB compute        : 414.72 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.75 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.462890625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.536781970405524e-17,-6.420254952677062e-17,8.408800999254452e-18)
    sum a = (2.775680076408382e-16,-2.3691010091198005e-17,-1.0486631094736021e-16)
    sum e = 2.5920015512789334
    sum de = -5.505714157152952e-19
Info: CFL hydro = 0.011148617111415368 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011148617111415368 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4658e+04 |  512 |      1 | 3.493e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1148.56860785414 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 21.490343736842277, dt = 0.009656263157722833 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.73 us    (1.0%)
   patch tree reduce : 561.00 ns  (0.1%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 632.00 ns  (0.2%)
   LB compute        : 378.37 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.62 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.462890625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.944268514912476e-17,-6.537348787305496e-17,7.271527130425781e-18)
    sum a = (-7.43018927634731e-17,9.912578570470121e-17,8.127190326973066e-17)
    sum e = 2.5920015426816683
    sum de = 1.0249098661777034e-18
Info: CFL hydro = 0.011153070152626643 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011153070152626643 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6104e+04 |  512 |      1 | 3.179e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1093.4062328899165 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 2293                                                    [SPH][rank=0]
Info: time since start : 816.616584192 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.1499127984807476 max=0.15008978933376896 delta=0.00017699085302136375
Number of particle pairs: 130816
Distance min=0.128862 max=1.843448 mean=0.800578
---------------- t = 21.5, dt = 0.011153070152626643 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.10 us   (1.5%)
   patch tree reduce : 1583.00 ns (0.2%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.1%)
   LB compute        : 664.52 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 4.75 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.39 us    (74.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.687540282489633e-17,-6.375173826345115e-17,9.087213403632944e-18)
    sum a = (9.06891749197225e-18,2.849478465682953e-17,-9.222456782628785e-17)
    sum e = 2.592001551823597
    sum de = -8.351744859927401e-19
Info: CFL hydro = 0.011154766175609268 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011154766175609268 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5189e+04 |  512 |      1 | 3.371e-02 | 0.1% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1191.1417849195468 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.511153070152627, dt = 0.011154766175609268 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.4%)
   patch tree reduce : 1933.00 ns (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1493.00 ns (0.3%)
   LB compute        : 407.91 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.742574384764998e-17,-6.366977257921125e-17,6.986110908518973e-18)
    sum a = (4.279194186496138e-17,5.91558052542851e-17,-3.644545602810023e-18)
    sum e = 2.592001552826466
    sum de = -1.2332799712022613e-18
Info: CFL hydro = 0.011149174860859371 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011149174860859371 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5883e+04 |  512 |      1 | 3.224e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1245.7351872253896 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.522307836328235, dt = 0.011149174860859371 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.2%)
   LB compute        : 398.95 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.776238862220673e-17,-6.296720957144064e-17,7.513765000813355e-18)
    sum a = (5.0891907875383333e-17,1.0767363563257693e-16,-1.469564216410174e-17)
    sum e = 2.592001554048884
    sum de = -3.3881317890172014e-20
Info: CFL hydro = 0.011144438005370762 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011144438005370762 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5607e+04 |  512 |      1 | 3.281e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1223.488383882793 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.533457011189093, dt = 0.011144438005370762 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1672.00 ns (0.4%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 403.17 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.868889358870421e-17,-6.137473342049393e-17,7.444240536502722e-18)
    sum a = (-1.7037152938437215e-17,1.0058360394582522e-17,9.328390111144197e-17)
    sum e = 2.592001555497607
    sum de = 7.157428404298838e-19
Info: CFL hydro = 0.011140621224995111 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011140621224995111 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5279e+04 |  512 |      1 | 3.351e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1197.2379245365682 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.544601449194463, dt = 0.011140621224995111 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.5%)
   patch tree reduce : 2.11 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.3%)
   LB compute        : 390.98 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.63 us    (78.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.800828567492645e-17,-6.181968999208199e-17,9.022811794587304e-18)
    sum a = (9.354919183052201e-17,-3.3922083891857466e-17,1.407987496124946e-16)
    sum e = 2.592001557054007
    sum de = 2.464865876510014e-19
Info: CFL hydro = 0.011137777916383084 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011137777916383084 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5436e+04 |  512 |      1 | 3.317e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1209.1744769145967 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.55574207041946, dt = 0.011137777916383084 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.2%)
   patch tree reduce : 1864.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 426.00 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (73.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.99930261718784e-17,-6.240515916522416e-17,1.086630785351872e-17)
    sum a = (-4.138096115768874e-17,2.0561677360753094e-17,-9.962928919360348e-17)
    sum e = 2.592001558592609
    sum de = 8.902316275642697e-19
Info: CFL hydro = 0.011135947665725099 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011135947665725099 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5569e+04 |  512 |      1 | 3.289e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1219.2603386858962 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.56687984833584, dt = 0.011135947665725099 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.5%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 415.38 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.46 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.860692790446431e-17,-6.190458302218759e-17,8.423437728583005e-18)
    sum a = (-4.960973038620198e-17,2.155814589344107e-16,8.734760961401355e-17)
    sum e = 2.59200155999113
    sum de = 5.463362509790237e-19
Info: CFL hydro = 0.011135156304829391 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011135156304829391 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4877e+04 |  512 |      1 | 3.442e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1164.845442197404 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.578015796001566, dt = 0.011135156304829391 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.4%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 405.30 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.80 us    (73.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.785460001697662e-17,-5.850300712623158e-17,1.0398664351471409e-17)
    sum a = (5.663828780977375e-17,-1.1703528771112027e-16,7.335636004884849e-17)
    sum e = 2.5920015611401808
    sum de = 4.861969117239684e-19
Info: CFL hydro = 0.011135415358798655 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011135415358798655 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4964e+04 |  512 |      1 | 3.422e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1171.5627917799743 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.589150952306394, dt = 0.011135415358798655 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 1933.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 413.59 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (73.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.915873260015081e-17,-6.165868596946789e-17,1.1200757118676186e-17)
    sum a = (-1.1995385153923398e-16,-1.9914148455257853e-16,1.43047683073827e-16)
    sum e = 2.5920015619523156
    sum de = -1.4060746924421386e-18
Info: CFL hydro = 0.01113672202967363 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01113672202967363 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2351e+04 |  512 |      1 | 4.145e-02 | 0.1% |   1.2% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 967.0530398331372 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.60028636766519, dt = 0.01113672202967363 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.3%)
   patch tree reduce : 1864.00 ns (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 439.08 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.686515711436635e-17,-6.411765649666501e-17,1.3162810685168891e-17)
    sum a = (-1.0677420861533727e-16,-2.895730530361185e-17,5.212432048484761e-17)
    sum e = 2.592001562368639
    sum de = 1.266314256145179e-19
Info: CFL hydro = 0.011139059787877138 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011139059787877138 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4923e+04 |  512 |      1 | 3.431e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1168.5198978003407 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.611423089694863, dt = 0.011139059787877138 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.1%)
   patch tree reduce : 2.14 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 441.38 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.91 us    (76.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.567080000115631e-17,-6.343265756408867e-17,1.3162810685168891e-17)
    sum a = (-1.1449508333614965e-16,1.200914367949224e-16,-1.8322257773484285e-17)
    sum e = 2.592001562364212
    sum de = 2.2149911570699954e-19
Info: CFL hydro = 0.011142398412578598 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011142398412578598 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5268e+04 |  512 |      1 | 3.353e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1195.7898833302022 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.62256214948274, dt = 0.011142398412578598 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.2%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1013.00 ns (0.2%)
   LB compute        : 416.57 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (74.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.451303471126767e-17,-6.143035299194244e-17,1.2598564769553122e-17)
    sum a = (1.2116284538177258e-17,-9.456498084592368e-17,4.982342663439887e-17)
    sum e = 2.592001561949486
    sum de = 1.0399447009914672e-18
Info: CFL hydro = 0.01114669480929582 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01114669480929582 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5774e+04 |  512 |      1 | 3.246e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1235.8047152969007 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.633704547895316, dt = 0.01114669480929582 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 420.70 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (72.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.541319356497376e-17,-6.360829831603132e-17,1.3398462027358615e-17)
    sum a = (9.898527310314708e-17,-1.5122668742262312e-16,-3.3775716598571927e-17)
    sum e = 2.5920015611703957
    sum de = 1.598774687942492e-19
Info: CFL hydro = 0.011151893420185455 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011151893420185455 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5757e+04 |  512 |      1 | 3.249e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1234.938722336047 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.64485124270461, dt = 0.011151893420185455 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.4%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 406.52 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.69061399564863e-17,-6.560767554231184e-17,1.2628570064676658e-17)
    sum a = (-1.412737114792062e-17,-2.597141252058677e-17,4.740251160345599e-17)
    sum e = 2.5920015601053046
    sum de = -2.7592760001298876e-19
Info: CFL hydro = 0.011157929618228007 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011157929618228007 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5873e+04 |  512 |      1 | 3.226e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1244.6670410575096 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.656003136124795, dt = 0.011157929618228007 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (1.1%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 388.10 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.624748713670136e-17,-6.505147982782678e-17,1.3753402713576057e-17)
    sum a = (5.351188242519456e-18,-7.717654640360116e-17,8.863125077612777e-17)
    sum e = 2.5920015588592666
    sum de = -3.0810823456375175e-18
Info: CFL hydro = 0.01115868802498257 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01115868802498257 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5944e+04 |  512 |      1 | 3.211e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1250.8980080330932 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.667161065743024, dt = 0.01115868802498257 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.2%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 414.96 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.631335241867985e-17,-6.630438385835102e-17,1.4932391260991107e-17)
    sum a = (1.1272037990506245e-16,-2.971841522869667e-17,4.487621212134751e-18)
    sum e = 2.592001557515501
    sum de = -4.912791094074942e-20
Info: CFL hydro = 0.011159338279466129 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011159338279466129 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6368e+04 |  512 |      1 | 3.128e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1284.2070503679038 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.678319753768005, dt = 0.011159338279466129 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1954.00 ns (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 400.61 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.808732401330063e-17,-6.62165634823797e-17,1.4512317129261597e-17)
    sum a = (1.4260858119397034e-16,2.798542647619584e-17,-2.8038118701778635e-17)
    sum e = 2.5920015562448944
    sum de = -1.762252046762572e-18
Info: CFL hydro = 0.011160251003680524 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011160251003680524 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5633e+04 |  512 |      1 | 3.275e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1226.6479733254826 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.68947909204747, dt = 0.011160251003680524 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.2%)
   patch tree reduce : 1944.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 408.10 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.98686139725857e-17,-6.558425677538615e-17,1.4038453017249653e-17)
    sum a = (-4.9460435747050725e-17,-2.3377784083566942e-17,-2.7622435588847693e-17)
    sum e = 2.5920015551805906
    sum de = -4.870439446712227e-20
Info: CFL hydro = 0.011161425110272676 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011161425110272676 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5989e+04 |  512 |      1 | 3.202e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1254.652294573026 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.70063934305115, dt = 0.011161425110272676 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.3%)
   LB compute        : 380.03 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.83083386261618e-17,-6.621070879064828e-17,1.3847077781278805e-17)
    sum a = (3.3055589515607055e-17,7.512740429760356e-17,-2.5664041204687127e-17)
    sum e = 2.592001554440389
    sum de = -8.813377816180995e-19
Info: CFL hydro = 0.011162856037835631 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011162856037835631 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6159e+04 |  512 |      1 | 3.169e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1268.1211208114798 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.711800768161424, dt = 0.011162856037835631 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 403.68 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.75 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.906505753244806e-17,-6.470605301567289e-17,1.3520312799018829e-17)
    sum a = (8.296098183424582e-17,2.3969107948440537e-17,1.4519635493925874e-17)
    sum e = 2.592001554119692
    sum de = -2.0921713797181218e-19
Info: CFL hydro = 0.01116453558268246 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01116453558268246 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5518e+04 |  512 |      1 | 3.299e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1217.9840585476968 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.72296362419926, dt = 0.01116453558268246 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.2%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 407.46 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.015988488622392e-17,-6.477045462471854e-17,1.4079069941136392e-17)
    sum a = (-3.644545602810023e-17,1.2442390867617447e-16,-2.618218142291795e-17)
    sum e = 2.5920015542836725
    sum de = 1.113848325639405e-18
Info: CFL hydro = 0.01116645194143505 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01116645194143505 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5893e+04 |  512 |      1 | 3.222e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1247.5990184443633 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.734128159781942, dt = 0.01116645194143505 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.2%)
   patch tree reduce : 1664.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1293.00 ns (0.3%)
   LB compute        : 398.32 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.933437335209346e-17,-6.275351332324375e-17,1.3508603415555987e-17)
    sum a = (-6.18255446838134e-17,8.860783200920208e-17,-3.3178538041966907e-17)
    sum e = 2.592001554961609
    sum de = 1.4280975490707504e-18
Info: CFL hydro = 0.011168589551355012 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011168589551355012 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5984e+04 |  512 |      1 | 3.203e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1254.9991601698246 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.745294611723377, dt = 0.011168589551355012 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.2%)
   patch tree reduce : 1873.00 ns (0.5%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 383.88 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.830980229909466e-17,-6.205095031547314e-17,1.3145246609974625e-17)
    sum a = (-1.7930578896652173e-16,-1.1986017647153125e-16,-1.850375321715836e-17)
    sum e = 2.592001556143638
    sum de = -8.470329472543003e-19
Info: CFL hydro = 0.011170929318562962 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011170929318562962 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5882e+04 |  512 |      1 | 3.224e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1247.1770381530157 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.756463201274734, dt = 0.011170929318562962 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.2%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 410.30 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.578935750871761e-17,-6.46006685645073e-17,1.3028884611812618e-17)
    sum a = (-1.4299499084824418e-16,-1.6625129007838414e-17,-1.37418396974065e-16)
    sum e = 2.5920015577811637
    sum de = -5.700531735021441e-19
Info: CFL hydro = 0.011173448783451952 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011173448783451952 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5537e+04 |  512 |      1 | 3.295e-02 | 0.1% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1220.3594057851083 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.767634130593297, dt = 0.011173448783451952 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 2.35 us    (0.6%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 387.34 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4466197177416294e-17,-6.41410752635907e-17,1.080135736712326e-17)
    sum a = (9.691856692195521e-17,1.0340410168743764e-16,8.396506146618466e-17)
    sum e = 2.5920015597892365
    sum de = -1.0215217343886862e-18
Info: CFL hydro = 0.011176122483713104 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011176122483713104 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6547e+04 |  512 |      1 | 3.094e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1299.9787062309886 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.77880757937675, dt = 0.011176122483713104 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.33 us    (1.1%)
   patch tree reduce : 1243.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.3%)
   LB compute        : 375.26 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.669683472708798e-17,-6.21475527290416e-17,1.2796343574605212e-17)
    sum a = (6.962399407006714e-17,9.433372052253252e-18,8.457980409798393e-17)
    sum e = 2.5920015620526557
    sum de = -9.512179997665793e-19
Info: CFL hydro = 0.011178922101852014 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011178922101852014 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6219e+04 |  512 |      1 | 3.157e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1274.5322319213954 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.789983701860464, dt = 0.011178922101852014 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.43 us    (1.1%)
   patch tree reduce : 1353.00 ns (0.3%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 377.62 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.728815859196157e-17,-6.293793611278353e-17,1.4013387618274503e-17)
    sum a = (-4.472984482806197e-18,1.1784323517005646e-16,5.3781198244839954e-17)
    sum e = 2.5920015644336876
    sum de = 3.8285889215894375e-19
Info: CFL hydro = 0.011181816836321518 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011181816836321518 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6191e+04 |  512 |      1 | 3.162e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1272.632074371382 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.801162623962316, dt = 0.011181816836321518 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.2%)
   patch tree reduce : 1954.00 ns (0.5%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 413.39 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.478515625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.690174893768774e-17,-6.064582429993193e-17,1.4357533716612135e-17)
    sum a = (-1.9596824163414795e-16,7.876902255454787e-17,3.8200399874593893e-17)
    sum e = 2.592001566782263
    sum de = -9.639234939753938e-19
Info: CFL hydro = 0.011184773825302606 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011184773825302606 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6133e+04 |  512 |      1 | 3.174e-02 | 0.1% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1268.4125746780703 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.812344440798636, dt = 0.011184773825302606 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.1%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 410.11 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.478515625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.356750199664306e-17,-5.995204332975846e-17,1.460690699254738e-17)
    sum a = (-1.199275054264426e-16,2.9727197266293804e-17,3.270430801172175e-17)
    sum e = 2.5920015689470968
    sum de = 1.1384122811097797e-18
Info: CFL hydro = 0.011185077918250609 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011185077918250609 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6015e+04 |  512 |      1 | 3.197e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1259.4585879818515 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.82352921462394, dt = 0.011185077918250609 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.3%)
   patch tree reduce : 1863.00 ns (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 387.26 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.478515625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.271857169558691e-17,-5.980567603647291e-17,1.531111663236745e-17)
    sum a = (9.496309988366036e-17,6.396250716578234e-17,8.145632605927045e-17)
    sum e = 2.5920015707651154
    sum de = -7.648707513706332e-19
Info: CFL hydro = 0.01118457632210315 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01118457632210315 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6296e+04 |  512 |      1 | 3.142e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1281.6173036324012 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.834714292542188, dt = 0.01118457632210315 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 378.39 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.478515625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.498433739564712e-17,-5.885721597598259e-17,1.6345750436779632e-17)
    sum a = (-5.50341022753642e-17,6.664395597877349e-17,1.4301584818753738e-16)
    sum e = 2.5920015721286904
    sum de = -1.2197274440461925e-18
Info: CFL hydro = 0.011184292855063536 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011184292855063536 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5796e+04 |  512 |      1 | 3.241e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1242.1938753373106 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.845898868864293, dt = 0.011184292855063536 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (1.1%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 403.29 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.478515625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.3239639259683444e-17,-5.80785419757035e-17,1.8200041083590856e-17)
    sum a = (8.625131858730484e-17,2.0299972640358542e-16,-6.2952572842112084e-18)
    sum e = 2.5920015729562937
    sum de = -1.2599615090407718e-18
Info: CFL hydro = 0.011184198352047146 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011184198352047146 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3489e+04 |  512 |      1 | 3.796e-02 | 0.0% |   1.3% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1060.7660992808942 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.857083161719356, dt = 0.011184198352047146 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (0.7%)
   patch tree reduce : 1894.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.1%)
   LB compute        : 688.38 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.478515625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.511021326787269e-17,-5.5101431230275555e-17,1.733427854380687e-17)
    sum a = (1.483051962486437e-16,3.8254555773109546e-17,-7.181877163288386e-18)
    sum e = 2.5920015731949437
    sum de = -5.658180087658726e-19
Info: CFL hydro = 0.011184262698047774 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011184262698047774 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5336e+04 |  512 |      1 | 3.338e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1206.032610186183 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.868267360071403, dt = 0.011184262698047774 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (1.2%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 379.42 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.478515625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.713886395281032e-17,-5.568104571168631e-17,1.7441126667905314e-17)
    sum a = (-2.5467323562511356e-16,-4.336570165464071e-17,-3.4693805445705495e-17)
    sum e = 2.5920015728324204
    sum de = -4.002230675776569e-19
Info: CFL hydro = 0.011184455497041576 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011184455497041576 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6274e+04 |  512 |      1 | 3.146e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1279.7495418814403 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.87945162276945, dt = 0.011184455497041576 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.21 us    (1.1%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1113.00 ns (0.3%)
   LB compute        : 379.14 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.478515625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.208333764272766e-17,-5.657388620072812e-17,1.6860231472678315e-17)
    sum a = (-1.6695238941322188e-16,-3.273358147037886e-17,-1.8894187971997544e-17)
    sum e = 2.5920015718984426
    sum de = 5.770411953169921e-19
Info: CFL hydro = 0.011184747005656802 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011184747005656802 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5775e+04 |  512 |      1 | 3.246e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1240.5353901113824 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.890636078266493, dt = 0.011184747005656802 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.4%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 380.88 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.478515625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0619664709872227e-17,-5.691345832115058e-17,1.659622146741452e-17)
    sum a = (5.84005500209317e-18,8.854050305429072e-17,1.8249074126841514e-16)
    sum e = 2.592001570462648
    sum de = -1.9566461081574338e-19
Info: CFL hydro = 0.01118473649108815 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01118473649108815 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5512e+04 |  512 |      1 | 3.301e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1219.901070843374 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.90182082527215, dt = 0.01118473649108815 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (1.1%)
   patch tree reduce : 1893.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 420.31 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.34 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.478515625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.185500466520221e-17,-5.5303418095009605e-17,1.970469685856624e-17)
    sum a = (-5.2311670620253104e-17,1.1493345337953987e-16,8.702230830468644e-17)
    sum e = 2.592001568627381
    sum de = -3.676056816634659e-19
Info: CFL hydro = 0.011177331791631846 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011177331791631846 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6067e+04 |  512 |      1 | 3.187e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1263.5527785123732 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.91300556176324, dt = 0.011177331791631846 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.2%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 391.32 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0891907875383333e-17,-5.389243738773697e-17,2.0137395169341627e-17)
    sum a = (-8.615471617373637e-17,-7.328317640220572e-17,3.55046802505074e-17)
    sum e = 2.592001566474797
    sum de = -6.042521287475365e-19
Info: CFL hydro = 0.01117077991292492 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01117077991292492 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6138e+04 |  512 |      1 | 3.173e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1268.2565614526857 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.92418289355487, dt = 0.01117077991292492 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (1.1%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 388.78 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9682914032844746e-17,-5.547027680935512e-17,2.0329136323545687e-17)
    sum a = (9.189524141639537e-17,-8.709439419662956e-17,-2.1635281457002554e-17)
    sum e = 2.592001564223222
    sum de = -1.0047928336804138e-18
Info: CFL hydro = 0.011164385659108223 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011164385659108223 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6256e+04 |  512 |      1 | 3.150e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1276.7947262563055 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.935353673467795, dt = 0.011164385659108223 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.2%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 373.45 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1670581875662424e-17,-5.67846551030593e-17,1.9864054249130874e-17)
    sum a = (5.5498818431545806e-17,-5.975591115675582e-17,1.3608096583166835e-16)
    sum e = 2.5920015620251053
    sum de = 1.2625026078825347e-18
Info: CFL hydro = 0.011159137042280328 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011159137042280328 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6222e+04 |  512 |      1 | 3.156e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1273.4043256431119 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.946518059126902, dt = 0.011159137042280328 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.3%)
   patch tree reduce : 1944.00 ns (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 368.32 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.224141431947604e-17,-5.715057333627316e-17,2.221398114283027e-17)
    sum a = (-1.600826405028649e-16,1.1566821719183328e-16,9.069283410205464e-17)
    sum e = 2.5920015600405053
    sum de = -1.435720845596039e-19
Info: CFL hydro = 0.011155114129704699 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011155114129704699 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5988e+04 |  512 |      1 | 3.202e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1254.4454225863283 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.957677196169183, dt = 0.011155114129704699 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 405.48 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9065244055179754e-17,-5.494628189939288e-17,2.3061996648303384e-17)
    sum a = (-1.0432328828927084e-16,7.91027399832389e-17,-2.558756429394543e-17)
    sum e = 2.592001558405661
    sum de = 4.684092198316281e-19
Info: CFL hydro = 0.011152377680467836 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011152377680467836 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6520e+04 |  512 |      1 | 3.099e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1295.7741914073902 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.968832310298886, dt = 0.011152377680467836 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.39 us    (1.1%)
   patch tree reduce : 1132.00 ns (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 376.47 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.811971134055515e-17,-5.406515079381391e-17,2.1996259794068023e-17)
    sum a = (1.845808662165327e-16,-3.7780325742864383e-17,-5.370362357939862e-17)
    sum e = 2.592001557233204
    sum de = -6.183340514956392e-19
Info: CFL hydro = 0.011150968539696672 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011150968539696672 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6677e+04 |  512 |      1 | 3.070e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1307.7539316739108 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.979984687979353, dt = 0.011150968539696672 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.2%)
   patch tree reduce : 1983.00 ns (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 377.79 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1805239785485126e-17,-5.5139486726529796e-17,2.1318030348806138e-17)
    sum a = (5.556102453119216e-18,-1.3294065555422703e-16,-2.790931548368736e-17)
    sum e = 2.592001556603255
    sum de = 2.617331807015788e-19
Info: CFL hydro = 0.0111509067102265 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.0111509067102265 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5919e+04 |  512 |      1 | 3.216e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1248.1631067230417 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.99113565651905, dt = 0.00886434348095122 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.01 us    (1.0%)
   patch tree reduce : 1272.00 ns (0.3%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 398.19 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1161223695028737e-17,-5.698078727606192e-17,2.11004919591605e-17)
    sum a = (-6.762168949792091e-18,2.270888555325201e-17,-4.0329312155432115e-17)
    sum e = 2.5920015451052283
    sum de = -8.732909686191836e-19
Info: CFL hydro = 0.011152061406890675 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011152061406890675 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6352e+04 |  512 |      1 | 3.131e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1019.1746562250235 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 2338                                                    [SPH][rank=0]
Info: time since start : 818.872795955 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14992971009793937 max=0.15008592689699843 delta=0.00015621679905905572
Number of particle pairs: 130816
Distance min=0.129807 max=1.842392 mean=0.800498
---------------- t = 22, dt = 0.011152061406890675 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.53 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 : 801.00 ns  (0.1%)
   LB compute        : 624.30 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (74.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.103534782280317e-17,-5.576301139592621e-17,2.0772080344851064e-17)
    sum a = (-1.2776108296308485e-16,-8.718660559139946e-17,-5.947927697244615e-17)
    sum e = 2.5920015567633077
    sum de = -8.656676720938949e-19
Info: CFL hydro = 0.01115415998215396 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01115415998215396 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2851e+04 |  512 |      1 | 3.984e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1007.6557659120367 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.01115206140689, dt = 0.01115415998215396 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (0.7%)
   patch tree reduce : 1763.00 ns (0.2%)
   gen split merge   : 751.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.1%)
   LB compute        : 715.95 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8860329844579995e-17,-5.751649156948701e-17,1.9976574105844136e-17)
    sum a = (5.2106756409653346e-17,6.7296754106827e-17,6.674641308407336e-17)
    sum e = 2.5920015578277504
    sum de = 1.1070720620613705e-18
Info: CFL hydro = 0.011157794450470031 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011157794450470031 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5236e+04 |  512 |      1 | 3.360e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1194.9212449790662 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.022306221389044, dt = 0.011157794450470031 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.25 us    (1.0%)
   patch tree reduce : 1313.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 401.82 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.057868186775227e-17,-5.592694276440602e-17,2.139231175014855e-17)
    sum a = (-2.5585002866312933e-17,-2.836890878460396e-17,-2.559232123097721e-17)
    sum e = 2.592001559320384
    sum de = 3.6253010142484055e-19
Info: CFL hydro = 0.011162666827211206 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011162666827211206 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6315e+04 |  512 |      1 | 3.138e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1279.9674063100217 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.033464015839513, dt = 0.011162666827211206 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.71 us    (0.8%)
   patch tree reduce : 581.00 ns  (0.1%)
   gen split merge   : 662.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 361.00 ns  (0.1%)
   LB compute        : 451.75 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.31 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.965071322832193e-17,-5.675245429853648e-17,2.074802122101725e-17)
    sum a = (-7.04729243711233e-17,5.007517837885001e-17,-1.1375080564979267e-16)
    sum e = 2.5920015612214558
    sum de = -3.3203691532368573e-19
Info: CFL hydro = 0.01116870080203502 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01116870080203502 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6100e+04 |  512 |      1 | 3.180e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1263.6445655687407 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.044626682666724, dt = 0.01116870080203502 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.61 us    (0.8%)
   patch tree reduce : 662.00 ns  (0.2%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 500.00 ns  (0.1%)
   LB compute        : 419.57 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.30 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.855295852868036e-17,-5.561371675677496e-17,1.8931969029576875e-17)
    sum a = (-1.6802965269180347e-18,-5.132222771764283e-17,-1.045940677818491e-16)
    sum e = 2.592001563409626
    sum de = 7.132017415881209e-19
Info: CFL hydro = 0.01117580284041036 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01117580284041036 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6543e+04 |  512 |      1 | 3.095e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1299.1020118658162 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.05579538346876, dt = 0.01117580284041036 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.42 us    (0.9%)
   patch tree reduce : 611.00 ns  (0.2%)
   gen split merge   : 591.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 541.00 ns  (0.1%)
   LB compute        : 354.84 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.63 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9261376228182385e-17,-5.6919313012882e-17,1.7749229820271384e-17)
    sum a = (8.019756733701478e-17,6.523882996323227e-17,3.066687528918699e-17)
    sum e = 2.5920015657480393
    sum de = -4.404571325722362e-19
Info: CFL hydro = 0.011183602809037295 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011183602809037295 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7317e+04 |  512 |      1 | 2.957e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1360.7460582284857 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.066971186309168, dt = 0.011183602809037295 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.99 us    (1.1%)
   patch tree reduce : 1203.00 ns (0.3%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.2%)
   LB compute        : 357.04 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 2.81 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.03971864240782e-17,-5.559029798984927e-17,1.894898422742132e-17)
    sum a = (-4.907402609277689e-17,-1.5561770622118943e-17,9.0015885370609e-17)
    sum e = 2.592001568090882
    sum de = 3.3881317890172014e-19
Info: CFL hydro = 0.01118656348443557 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01118656348443557 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6477e+04 |  512 |      1 | 3.107e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1295.6656462671588 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.078154789118205, dt = 0.01118656348443557 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (0.8%)
   patch tree reduce : 791.00 ns  (0.2%)
   gen split merge   : 672.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 414.94 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.60 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9258448882316675e-17,-5.622845938857424e-17,2.0377574749667373e-17)
    sum a = (-2.3172869872967183e-17,1.2198835691590304e-16,-1.0354022327019318e-17)
    sum e = 2.5920015702575583
    sum de = -6.759322919089317e-19
Info: CFL hydro = 0.011182013420009611 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011182013420009611 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6218e+04 |  512 |      1 | 3.157e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1275.6456263538314 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.08934135260264, dt = 0.011182013420009611 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.66 us    (0.8%)
   patch tree reduce : 842.00 ns  (0.2%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 611.00 ns  (0.1%)
   LB compute        : 421.34 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.24 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.894815022055132e-17,-5.409735159833673e-17,1.948578627554605e-17)
    sum a = (5.801999505838928e-17,6.046725620212356e-17,-5.037376765715251e-17)
    sum e = 2.592001572095188
    sum de = -1.5975041385216104e-18
Info: CFL hydro = 0.011177943398945006 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011177943398945006 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6443e+04 |  512 |      1 | 3.114e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1292.788724525093 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.10052336602265, dt = 0.011177943398945006 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (1.1%)
   patch tree reduce : 992.00 ns  (0.2%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 701.00 ns  (0.2%)
   LB compute        : 390.81 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 2.67 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.478515625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0321075431569717e-17,-5.36319036056887e-17,1.8602734099242707e-17)
    sum a = (1.8266638202035778e-17,-1.1440067643198049e-17,-7.391548310919926e-18)
    sum e = 2.592001573554994
    sum de = 1.0164395367051604e-20
Info: CFL hydro = 0.01117438691259874 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01117438691259874 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6090e+04 |  512 |      1 | 3.182e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1264.5886710121706 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.111701309421594, dt = 0.01117438691259874 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 us    (1.0%)
   patch tree reduce : 1202.00 ns (0.3%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 395.29 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.478515625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.01278706044328e-17,-5.426713765854796e-17,1.8979081002103158e-17)
    sum a = (6.414400260945641e-17,3.725925817876785e-17,9.58910685230907e-17)
    sum e = 2.5920015745669245
    sum de = 3.7269449679189215e-20
Info: CFL hydro = 0.011171369214955176 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011171369214955176 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6432e+04 |  512 |      1 | 3.116e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1291.0248339140203 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.122875696334194, dt = 0.011171369214955176 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (0.9%)
   patch tree reduce : 1172.00 ns (0.3%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 361.00 ns  (0.1%)
   LB compute        : 369.82 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.65 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.478515625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1090967394251673e-17,-5.345919019961176e-17,2.0325660100330156e-17)
    sum a = (5.3172310304772097e-17,-9.221139476989215e-17,-1.599209046437844e-17)
    sum e = 2.5920015750934495
    sum de = 1.4391089773850563e-18
Info: CFL hydro = 0.011168907136990558 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011168907136990558 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6163e+04 |  512 |      1 | 3.168e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1269.615403872346 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.13404706554915, dt = 0.011168907136990558 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.02 us    (1.0%)
   patch tree reduce : 1042.00 ns (0.3%)
   gen split merge   : 682.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 711.00 ns  (0.2%)
   LB compute        : 372.13 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.17437655223052e-17,-5.531512747847245e-17,1.9828926098742346e-17)
    sum a = (1.1842870434319862e-16,5.346504489134318e-17,1.0629778307569282e-16)
    sum e = 2.5920015751331196
    sum de = -8.012931681025681e-19
Info: CFL hydro = 0.011167009643214133 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011167009643214133 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5986e+04 |  512 |      1 | 3.203e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1255.4287398032025 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.14521597268614, dt = 0.011167009643214133 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.12 us    (0.7%)
   patch tree reduce : 1734.00 ns (0.3%)
   gen split merge   : 711.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 606.11 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.3298186176997664e-17,-5.388951004187126e-17,2.1627963092338277e-17)
    sum a = (2.0627249908145018e-16,-1.1594631504907581e-16,6.617850798612546e-17)
    sum e = 2.592001574718565
    sum de = 1.054556019331604e-18
Info: CFL hydro = 0.011165677220899665 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011165677220899665 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6035e+04 |  512 |      1 | 3.193e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1259.059420535727 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.156382982329355, dt = 0.011165677220899665 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.05 us    (1.0%)
   patch tree reduce : 1423.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 385.05 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.593572480200314e-17,-5.600890844864592e-17,2.21883668665053e-17)
    sum a = (1.268828792033716e-16,1.475265222483646e-16,-2.937884310827421e-17)
    sum e = 2.592001573913662
    sum de = -9.402065714522734e-19
Info: CFL hydro = 0.01116490273093817 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01116490273093817 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6178e+04 |  512 |      1 | 3.165e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1270.1403574244844 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.167548659550253, dt = 0.01116490273093817 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.1%)
   patch tree reduce : 1552.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 396.71 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 us    (73.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.678319143012644e-17,-5.287957571820101e-17,2.128985464484867e-17)
    sum a = (-1.076677809408455e-16,9.039644033315142e-18,1.7858273453769115e-17)
    sum e = 2.5920015728070007
    sum de = -4.029759246562334e-19
Info: CFL hydro = 0.011163763355075088 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011163763355075088 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6332e+04 |  512 |      1 | 3.135e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1282.1192451264167 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.178713562281192, dt = 0.011163763355075088 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.1%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 434.57 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.469160280907603e-17,-5.3699232560600053e-17,2.183434097587089e-17)
    sum a = (1.1826477297471882e-17,-7.749269975709794e-17,-1.0100806909635329e-17)
    sum e = 2.5920015714979385
    sum de = 1.3461471114238968e-18
Info: CFL hydro = 0.011162863274263215 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011162863274263215 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5621e+04 |  512 |      1 | 3.278e-02 | 0.1% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1226.2101594155301 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.189877325636267, dt = 0.011162863274263215 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.1%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 399.61 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (73.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.525218954235966e-17,-5.5022392891901364e-17,2.144536989396456e-17)
    sum a = (-6.035601705922656e-17,-4.374625661718312e-17,-6.031796156297231e-18)
    sum e = 2.5920015701067824
    sum de = 1.5585406229479126e-18
Info: CFL hydro = 0.011162483473413046 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011162483473413046 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5850e+04 |  512 |      1 | 3.230e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1244.077906286959 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.20104018891053, dt = 0.011162483473413046 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.2%)
   patch tree reduce : 1864.00 ns (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 389.40 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.432861192172789e-17,-5.5282926673949626e-17,2.147208192498917e-17)
    sum a = (1.6513743497648115e-16,8.711781296355526e-18,-1.895346672577819e-17)
    sum e = 2.592001568751246
    sum de = -4.658681209898652e-21
Info: CFL hydro = 0.011162609150527235 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011162609150527235 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6278e+04 |  512 |      1 | 3.145e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1277.5686839804466 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.212202672383942, dt = 0.011162609150527235 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.2%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.3%)
   LB compute        : 392.71 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.744184424991139e-17,-5.4820406027167314e-17,2.111714123877173e-17)
    sum a = (-1.040554361425583e-16,6.407374630867935e-17,-1.87979514766623e-17)
    sum e = 2.59200156753839
    sum de = 3.3881317890172014e-21
Info: CFL hydro = 0.011163220023882618 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011163220023882618 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5787e+04 |  512 |      1 | 3.243e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1239.0578843548046 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.22336528153447, dt = 0.011163220023882618 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.22 us    (1.1%)
   patch tree reduce : 1202.00 ns (0.3%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 372.46 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.471063055720315e-17,-5.389097371480411e-17,2.1039200655097177e-17)
    sum a = (1.7171810848259917e-17,-3.790327426922424e-17,-7.964283529546257e-17)
    sum e = 2.5920015665586553
    sum de = 2.228543684226064e-18
Info: CFL hydro = 0.011164291246092129 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011164291246092129 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6315e+04 |  512 |      1 | 3.138e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1280.6020434897168 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.23452850155835, dt = 0.011164291246092129 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.78 us    (1.0%)
   patch tree reduce : 1212.00 ns (0.3%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 374.01 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.546734946348941e-17,-5.4845288467025854e-17,1.989460842160423e-17)
    sum a = (-4.72180888139162e-17,-1.0471701630820895e-16,8.010389226931202e-17)
    sum e = 2.5920015658807993
    sum de = 6.522153693858113e-20
Info: CFL hydro = 0.011165793579324327 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011165793579324327 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6417e+04 |  512 |      1 | 3.119e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1288.6970237536445 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.245692792804444, dt = 0.011165793579324327 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.50 us    (1.1%)
   patch tree reduce : 1333.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 407.97 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4584754684977585e-17,-5.62855426329556e-17,2.1618998095624535e-17)
    sum a = (-2.3038211963144485e-17,2.8676280100503606e-17,-7.893588126889339e-17)
    sum e = 2.592001565546651
    sum de = -1.5382118322138094e-18
Info: CFL hydro = 0.011167693904966185 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011167693904966185 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5726e+04 |  512 |      1 | 3.256e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1234.6173124379077 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.256858586383768, dt = 0.011167693904966185 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.26 us    (1.0%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 395.49 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.501653820016994e-17,-5.5347328282995265e-17,1.9851064151851783e-17)
    sum a = (-1.833982184867855e-16,-7.033826646130059e-17,2.139304358661498e-17)
    sum e = 2.592001565569175
    sum de = 2.405573570202213e-19
Info: CFL hydro = 0.011169956024198019 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011169956024198019 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5642e+04 |  512 |      1 | 3.273e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1228.2551789222407 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.268026280288733, dt = 0.011169956024198019 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.41 us    (1.0%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 411.35 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1650090454602446e-17,-5.67422085880065e-17,2.06912124153108e-17)
    sum a = (9.777335191474278e-17,4.436685394071382e-17,-9.240459959702907e-17)
    sum e = 2.5920015659327227
    sum de = 1.2434443665693129e-18
Info: CFL hydro = 0.011172541292451162 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011172541292451162 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6004e+04 |  512 |      1 | 3.199e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1256.945130156564 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.27919623631293, dt = 0.011172541292451162 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.2%)
   patch tree reduce : 1652.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 384.92 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.417492626377807e-17,-5.564152654249921e-17,1.8860340535425263e-17)
    sum a = (2.757559805499632e-18,-1.6328735238935187e-17,-1.3670119723696583e-16)
    sum e = 2.5920015665949525
    sum de = -8.114575634696197e-19
Info: CFL hydro = 0.011175409257999242 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011175409257999242 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6179e+04 |  512 |      1 | 3.165e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1271.0093280579897 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.290368777605384, dt = 0.011175409257999242 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.72 us    (0.9%)
   patch tree reduce : 1172.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 591.00 ns  (0.1%)
   LB compute        : 390.34 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.394366594038691e-17,-5.611356106334508e-17,1.720757935555657e-17)
    sum a = (-1.1153773217531525e-16,6.900925143826787e-17,-6.532079564747217e-17)
    sum e = 2.59200156749187
    sum de = 1.2010927192065979e-18
Info: CFL hydro = 0.011178518393545951 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011178518393545951 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6754e+04 |  512 |      1 | 3.056e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1316.5072221601404 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.30154418686338, dt = 0.011178518393545951 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.49 us    (0.9%)
   patch tree reduce : 761.00 ns  (0.2%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 561.00 ns  (0.1%)
   LB compute        : 371.80 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.74 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1824267533612247e-17,-5.489285783734366e-17,1.700952611182957e-17)
    sum a = (-3.868780296123475e-17,7.404428632729054e-17,1.6053564727558368e-17)
    sum e = 2.5920015685435627
    sum de = 3.1340219048409113e-19
Info: CFL hydro = 0.011180464068616296 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011180464068616296 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6431e+04 |  512 |      1 | 3.116e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1291.4855411907947 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.312722705256927, dt = 0.011180464068616296 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 us    (0.8%)
   patch tree reduce : 1093.00 ns (0.3%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 411.00 ns  (0.1%)
   LB compute        : 393.39 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.52 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.16779002403267e-17,-5.398391694604043e-17,1.744917686903602e-17)
    sum a = (-1.650144864501213e-17,1.8216873322318694e-16,-8.974071485923218e-17)
    sum e = 2.592001569652678
    sum de = 2.659683454378503e-19
Info: CFL hydro = 0.011178901939965456 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011178901939965456 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6498e+04 |  512 |      1 | 3.103e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1296.920699916892 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.323903169325543, dt = 0.011178901939965456 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.73 us    (0.9%)
   patch tree reduce : 901.00 ns  (0.2%)
   gen split merge   : 500.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 751.00 ns  (0.2%)
   LB compute        : 389.73 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.18652503757322e-17,-5.1394679527819173e-17,1.597123312508525e-17)
    sum a = (-1.8484139999858094e-16,-1.3829367338791253e-16,1.0512684472940848e-16)
    sum e = 2.5920015707128994
    sum de = 9.046311876675928e-19
Info: CFL hydro = 0.011177724768078266 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011177724768078266 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6654e+04 |  512 |      1 | 3.074e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1309.064011342811 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.335082071265507, dt = 0.011177724768078266 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.12 us    (1.1%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.2%)
   LB compute        : 362.43 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8940831855887045e-17,-5.463598323762753e-17,1.8194918228325863e-17)
    sum a = (-8.4761299541658e-17,-1.0315966830765078e-16,1.8090997450093125e-17)
    sum e = 2.592001571665296
    sum de = -1.0842021724855044e-19
Info: CFL hydro = 0.011176918366291365 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011176918366291365 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6441e+04 |  512 |      1 | 3.114e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1292.122184124616 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.346259796033586, dt = 0.011176918366291365 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.08 us    (1.0%)
   patch tree reduce : 1292.00 ns (0.3%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 691.00 ns  (0.2%)
   LB compute        : 382.26 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8418300618857655e-17,-5.575349752186264e-17,1.783887978740878e-17)
    sum a = (8.208350991099899e-17,-7.06368557396031e-17,-5.755161971987555e-17)
    sum e = 2.592001572440149
    sum de = -4.336808689942018e-19
Info: CFL hydro = 0.011176465747079941 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011176465747079941 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6269e+04 |  512 |      1 | 3.147e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1278.507357484287 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.357436714399878, dt = 0.011176465747079941 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.78 us    (0.5%)
   patch tree reduce : 761.00 ns  (0.1%)
   gen split merge   : 591.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 501.00 ns  (0.1%)
   LB compute        : 687.41 us  (98.0%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.013665264202993e-17,-5.635177383316731e-17,1.6912740739144506e-17)
    sum a = (6.398885327857373e-17,6.870480746823393e-18,-2.5760643618255583e-18)
    sum e = 2.5920015729865167
    sum de = -1.0164395367051604e-18
Info: CFL hydro = 0.01117634786151141 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01117634786151141 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5749e+04 |  512 |      1 | 3.251e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1237.5910455032595 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.36861318014696, dt = 0.01117634786151141 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (1.1%)
   patch tree reduce : 1152.00 ns (0.3%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 395.49 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0749931600896355e-17,-5.567994795698666e-17,1.725084918663411e-17)
    sum a = (1.0525784345689904e-16,-3.959528017960512e-17,3.7294386329156383e-17)
    sum e = 2.5920015732759496
    sum de = -8.707498697774207e-19
Info: CFL hydro = 0.011176543731749367 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011176543731749367 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6129e+04 |  512 |      1 | 3.174e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1267.486512613154 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.37978952800847, dt = 0.011176543731749367 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.2%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 389.41 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.232630734958166e-17,-5.646008563019861e-17,1.7746302474405672e-17)
    sum a = (-5.168229125912527e-17,-1.402784138848645e-17,8.824191377598823e-17)
    sum e = 2.592001573304295
    sum de = -5.861467994999758e-19
Info: CFL hydro = 0.011177031081261973 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011177031081261973 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6196e+04 |  512 |      1 | 3.161e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1272.800035375908 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.39096607174022, dt = 0.011177031081261973 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.81 us    (1.0%)
   patch tree reduce : 1242.00 ns (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 742.00 ns  (0.2%)
   LB compute        : 371.74 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.081872422874056e-17,-5.66499971932366e-17,1.90065248695942e-17)
    sum a = (6.570720530174601e-17,-2.4630688114091192e-17,1.1444751396583187e-16)
    sum e = 2.5920015730914074
    sum de = 1.7957098481791167e-19
Info: CFL hydro = 0.011177786969864689 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011177786969864689 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6239e+04 |  512 |      1 | 3.153e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1276.225162616763 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.40214310282148, dt = 0.011177786969864689 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (1.1%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.2%)
   LB compute        : 379.06 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.197795319156206e-17,-5.6734524305109e-17,2.0462879437785353e-17)
    sum a = (-5.866913400411067e-17,-7.4383858447713e-18,1.4039550771949293e-17)
    sum e = 2.59200157267817
    sum de = 5.454892180317694e-19
Info: CFL hydro = 0.01117845965676796 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01117845965676796 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5934e+04 |  512 |      1 | 3.213e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1252.2763415446746 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.413320889791343, dt = 0.01117845965676796 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.65 us    (0.8%)
   patch tree reduce : 1132.00 ns (0.3%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 414.83 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.057429084895371e-17,-5.673946420125739e-17,2.0020118375596584e-17)
    sum a = (1.2717195460761055e-16,7.821282684006281e-17,-6.368733665440552e-17)
    sum e = 2.5920015721212986
    sum de = 9.097133853511186e-19
Info: CFL hydro = 0.011178794749863727 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011178794749863727 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6841e+04 |  512 |      1 | 3.040e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1323.7173229478074 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.424499349448112, dt = 0.011178794749863727 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.36 us    (0.9%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 410.00 ns  (0.1%)
   LB compute        : 376.80 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.21 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.330257719579623e-17,-5.540953438264162e-17,1.8907726946626458e-17)
    sum a = (-6.924051176165902e-17,-4.1509764375780024e-18,-3.3137555199846958e-18)
    sum e = 2.5920015714902376
    sum de = 1.9651164376299768e-19
Info: CFL hydro = 0.011179353166620125 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011179353166620125 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6482e+04 |  512 |      1 | 3.106e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1295.5175276044847 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.435678144197976, dt = 0.011179353166620125 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (0.8%)
   patch tree reduce : 651.00 ns  (0.2%)
   gen split merge   : 571.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 461.00 ns  (0.1%)
   LB compute        : 370.48 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.46 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1465667665062666e-17,-5.590132848808105e-17,1.9203388879063255e-17)
    sum a = (1.345115425294141e-17,-2.5609885306171475e-17,3.124063507886632e-17)
    sum e = 2.592001570865967
    sum de = -1.0740377771184528e-18
Info: CFL hydro = 0.011180124269987365 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011180124269987365 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5737e+04 |  512 |      1 | 3.253e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1237.0255915357218 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.446857497364597, dt = 0.011180124269987365 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (0.7%)
   patch tree reduce : 551.00 ns  (0.1%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 541.00 ns  (0.1%)
   LB compute        : 460.50 us  (97.6%)
   LB move op cnt    : 0
   LB apply          : 2.40 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1969171153964934e-17,-5.633549047178929e-17,1.9720065424361222e-17)
    sum a = (7.335636004884849e-17,7.359347506397107e-18,9.563053474104243e-17)
    sum e = 2.592001570324616
    sum de = -1.1519648082658485e-18
Info: CFL hydro = 0.01118109847692605 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01118109847692605 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6897e+04 |  512 |      1 | 3.030e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1328.2562409068116 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.458037621634585, dt = 0.01118109847692605 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (0.8%)
   patch tree reduce : 752.00 ns  (0.2%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 501.00 ns  (0.1%)
   LB compute        : 389.09 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.38 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.322646620328775e-17,-5.615509278281486e-17,2.1239357928665157e-17)
    sum a = (3.946647696151384e-17,-5.514973243705978e-17,-6.19602025936361e-17)
    sum e = 2.59200156993453
    sum de = -6.2511031507367365e-19
Info: CFL hydro = 0.01118226747937682 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01118226747937682 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6175e+04 |  512 |      1 | 3.165e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1271.6329250731746 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.46921872011151, dt = 0.01118226747937682 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.22 us    (0.8%)
   patch tree reduce : 641.00 ns  (0.2%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 401.00 ns  (0.1%)
   LB compute        : 400.72 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.05 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.355871995904593e-17,-5.71728943484992e-17,1.969518298450268e-17)
    sum a = (7.52869446472848e-17,1.223908669724383e-16,4.113506410496903e-17)
    sum e = 2.592001569750722
    sum de = -4.489274620447792e-19
Info: CFL hydro = 0.011183624124055947 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011183624124055947 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6474e+04 |  512 |      1 | 3.108e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1295.2666338418555 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.480400987590887, dt = 0.011183624124055947 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 us    (0.8%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 381.00 ns  (0.1%)
   LB compute        : 390.13 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 2.05 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4419359643564925e-17,-5.4620614671832545e-17,2.0756345860822867e-17)
    sum a = (-2.6773505287791544e-17,4.368478235400319e-17,1.2608664112789824e-16)
    sum e = 2.592001569810169
    sum de = -1.0638733817514012e-18
Info: CFL hydro = 0.011185162645842881 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011185162645842881 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6534e+04 |  512 |      1 | 3.097e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1300.124472430777 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.49158461171494, dt = 0.008415388285058611 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.85 us    (0.9%)
   patch tree reduce : 641.00 ns  (0.2%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 601.00 ns  (0.1%)
   LB compute        : 394.85 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.37 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.358067505303876e-17,-5.484784989465835e-17,2.2230264504208287e-17)
    sum a = (1.5377347832579157e-17,1.152671708082309e-16,1.1007991393419125e-16)
    sum e = 2.5920015552512283
    sum de = -1.1998221697857164e-18
Info: CFL hydro = 0.011186476056559778 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011186476056559778 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5994e+04 |  512 |      1 | 3.201e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 946.3774439251314 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 2383                                                    [SPH][rank=0]
Info: time since start : 821.258256349 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14992787084421594 max=0.15008369633208096 delta=0.00015582548786502448
Number of particle pairs: 130816
Distance min=0.128476 max=1.840843 mean=0.800585
---------------- t = 22.5, dt = 0.011186476056559778 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.75 us    (1.7%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.1%)
   LB compute        : 565.17 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.410906098179957e-17,-5.319335060318189e-17,2.3455358749008282e-17)
    sum a = (1.197299095805071e-16,-1.975519357474975e-17,-5.735548754687292e-17)
    sum e = 2.592001570309739
    sum de = -4.486098246895588e-19
Info: CFL hydro = 0.011188284799835666 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011188284799835666 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3848e+04 |  512 |      1 | 3.697e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1089.1925120421274 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.511186476056558, dt = 0.011188284799835666 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.12 us    (0.6%)
   patch tree reduce : 1343.00 ns (0.2%)
   gen split merge   : 771.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.1%)
   LB compute        : 676.54 us  (97.7%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.587717788468893e-17,-5.417346259084521e-17,2.198875847028714e-17)
    sum a = (-4.7636699272712855e-17,5.525950790702394e-17,-3.1225998349537766e-17)
    sum e = 2.592001571147834
    sum de = 9.706997575534282e-19
Info: CFL hydro = 0.011190305652259699 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011190305652259699 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5034e+04 |  512 |      1 | 3.406e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1182.6821808242041 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.522374760856394, dt = 0.011190305652259699 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.30 us    (0.9%)
   patch tree reduce : 652.00 ns  (0.2%)
   gen split merge   : 431.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 320.00 ns  (0.1%)
   LB compute        : 363.24 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.24 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4675502406814626e-17,-5.31987478971218e-17,2.163601329346898e-17)
    sum a = (-2.645442458842906e-17,3.167973695872295e-17,2.466727993741258e-17)
    sum e = 2.592001572077602
    sum de = -6.166399856011306e-19
Info: CFL hydro = 0.011192497967103697 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011192497967103697 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6306e+04 |  512 |      1 | 3.140e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1282.990802494334 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.533565066508654, dt = 0.011192497967103697 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.22 us    (0.8%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 341.00 ns  (0.1%)
   LB compute        : 402.06 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 2.33 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4114915673530996e-17,-5.295824813834199e-17,2.2268320000462528e-17)
    sum a = (-9.399122105624435e-17,-6.716063252407145e-17,5.057721819481942e-17)
    sum e = 2.5920015731392816
    sum de = -3.2780175058741423e-19
Info: CFL hydro = 0.01119486171863485 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01119486171863485 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6134e+04 |  512 |      1 | 3.173e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1269.6931251892915 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.54475756447576, dt = 0.01119486171863485 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 us    (0.8%)
   patch tree reduce : 781.00 ns  (0.2%)
   gen split merge   : 571.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 520.00 ns  (0.1%)
   LB compute        : 392.02 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.17 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2813710436222515e-17,-5.4349194822346165e-17,2.296941933530028e-17)
    sum a = (-1.7596568733374563e-16,6.812080196802461e-17,-1.3343574292376536e-17)
    sum e = 2.5920015742609577
    sum de = -8.809142651444724e-19
Info: CFL hydro = 0.011197397121833246 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011197397121833246 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6191e+04 |  512 |      1 | 3.162e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1274.4297072306251 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.555952426194395, dt = 0.011197397121833246 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.53 us    (0.9%)
   patch tree reduce : 471.00 ns  (0.1%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 411.00 ns  (0.1%)
   LB compute        : 366.75 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.40 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0304975029308306e-17,-5.2882640283404173e-17,2.2452742790002312e-17)
    sum a = (-3.151287824437743e-18,7.798449386253736e-17,6.169088677399071e-17)
    sum e = 2.5920015753671537
    sum de = -5.404070203482436e-19
Info: CFL hydro = 0.011200104722890843 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011200104722890843 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6207e+04 |  512 |      1 | 3.159e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1276.031406108606 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.567149823316228, dt = 0.011200104722890843 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.56 us    (0.9%)
   patch tree reduce : 782.00 ns  (0.2%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 411.00 ns  (0.1%)
   LB compute        : 388.12 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.27 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1484695413189786e-17,-5.1817223607622875e-17,2.3594407677629548e-17)
    sum a = (1.3166323500207743e-16,-5.237607222929874e-17,2.2695712496856312e-17)
    sum e = 2.592001576383922
    sum de = -2.778268066994105e-19
Info: CFL hydro = 0.011202985345190054 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011202985345190054 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6352e+04 |  512 |      1 | 3.131e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1287.7049219316082 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.57834992803912, dt = 0.011202985345190054 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 us    (0.5%)
   patch tree reduce : 481.00 ns  (0.1%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 351.00 ns  (0.1%)
   LB compute        : 681.54 us  (98.5%)
   LB move op cnt    : 0
   LB apply          : 2.28 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.394952063211833e-17,-5.300965965010854e-17,2.356074320017387e-17)
    sum a = (5.100900171001177e-18,-1.0434817072912939e-16,-7.569530939555146e-17)
    sum e = 2.5920015772449414
    sum de = -5.996993266560446e-19
Info: CFL hydro = 0.011205023337978296 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011205023337978296 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6014e+04 |  512 |      1 | 3.197e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1261.462652848538 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.58955291338431, dt = 0.011205023337978296 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.59 us    (1.0%)
   patch tree reduce : 651.00 ns  (0.2%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 721.00 ns  (0.2%)
   LB compute        : 355.37 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 2.89 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.282688349261822e-17,-5.4553194237362894e-17,2.2294666113253925e-17)
    sum a = (-6.149036358218951e-17,1.8729158848818096e-17,-5.41441891321881e-17)
    sum e = 2.592001577890049
    sum de = 8.605854744103691e-19
Info: CFL hydro = 0.011205071369045016 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011205071369045016 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6266e+04 |  512 |      1 | 3.148e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1281.4974655459478 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.60075793672229, dt = 0.011205071369045016 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.00 us    (1.0%)
   patch tree reduce : 1002.00 ns (0.3%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.2%)
   LB compute        : 381.37 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.206284622166768e-17,-5.364004528637771e-17,2.1756034473963125e-17)
    sum a = (-7.179315735655888e-17,3.420603644083142e-17,-1.3261462240843347e-16)
    sum e = 2.5920015782758816
    sum de = 8.470329472543003e-19
Info: CFL hydro = 0.011205428663443692 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011205428663443692 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5932e+04 |  512 |      1 | 3.214e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1255.1930075995372 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.611963008091333, dt = 0.011205428663443692 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.1%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 418.83 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (73.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1168542059693013e-17,-5.308668543820005e-17,1.9971817168812357e-17)
    sum a = (7.9020774298999e-17,1.3597228811640383e-16,-1.0129202164532725e-16)
    sum e = 2.592001578404664
    sum de = 2.778268066994105e-19
Info: CFL hydro = 0.011206140493508305 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011206140493508305 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5748e+04 |  512 |      1 | 3.251e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1240.7545801293793 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.623168436754778, dt = 0.011206140493508305 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.2%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 411.59 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (73.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.278004595876684e-17,-5.11921437857353e-17,1.8812588205990855e-17)
    sum a = (4.531238665533843e-17,3.885173432971456e-17,-1.116606807016751e-16)
    sum e = 2.5920015782848758
    sum de = -3.6930636500287495e-19
Info: CFL hydro = 0.011207248853787622 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011207248853787622 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6011e+04 |  512 |      1 | 3.198e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1261.5432145004322 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.634374577248288, dt = 0.011207248853787622 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.2%)
   patch tree reduce : 1894.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1013.00 ns (0.2%)
   LB compute        : 415.54 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.308888094759934e-17,-5.116451695912766e-17,1.7635795167975087e-17)
    sum a = (-1.7589982205176713e-16,-1.1744511613231978e-17,6.22822106388643e-17)
    sum e = 2.5920015779459686
    sum de = 2.507217523872729e-19
Info: CFL hydro = 0.01120879135333402 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01120879135333402 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5940e+04 |  512 |      1 | 3.212e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1256.0818730075612 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.645581826102074, dt = 0.01120879135333402 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.2%)
   patch tree reduce : 1943.00 ns (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 410.74 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.00327318637972e-17,-5.1552024368101134e-17,1.926632681517604e-17)
    sum a = (1.1965526226093148e-16,-1.388498691023976e-16,-1.4402541659297442e-18)
    sum e = 2.592001577436014
    sum de = 1.4907779871675686e-19
Info: CFL hydro = 0.011210800264909032 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011210800264909032 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5658e+04 |  512 |      1 | 3.270e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1234.033720191504 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.656790617455407, dt = 0.011210800264909032 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.4%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 403.07 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.312547277092072e-17,-5.375759651879766e-17,1.8998474668463493e-17)
    sum a = (-1.6498667666439704e-16,-2.771025596481902e-17,4.814898479921226e-17)
    sum e = 2.592001576816637
    sum de = -4.438452643612534e-19
Info: CFL hydro = 0.011213301712207777 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011213301712207777 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5525e+04 |  512 |      1 | 3.298e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1223.8013200401208 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.668001417720316, dt = 0.011213301712207777 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.2%)
   patch tree reduce : 1884.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 419.58 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9501418589170675e-17,-5.3469801828374963e-17,1.97273837890255e-17)
    sum a = (8.807285955224342e-17,1.4737722760921335e-17,-2.9460808792514116e-17)
    sum e = 2.5920015761594954
    sum de = 1.3010426069826053e-18
Info: CFL hydro = 0.0112163155095973 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.0112163155095973 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5572e+04 |  512 |      1 | 3.288e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1227.7819717297293 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.679214719432522, dt = 0.0112163155095973 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.3%)
   patch tree reduce : 1864.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 425.99 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (75.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2032109090077715e-17,-5.3111567878058597e-17,1.9129473395954056e-17)
    sum a = (-7.387962312234431e-17,-5.0186417521747015e-17,-5.1404193401882735e-18)
    sum e = 2.5920015755383954
    sum de = 1.026603932072212e-18
Info: CFL hydro = 0.011219853722542455 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011219853722542455 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5259e+04 |  512 |      1 | 3.355e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1203.367192219528 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.69043103494212, dt = 0.011219853722542455 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (1.1%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 418.50 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.033424848796542e-17,-5.4216640942364446e-17,1.920412071552968e-17)
    sum a = (-4.8278519853769964e-17,-3.311120908705556e-17,-1.0690667101576068e-17)
    sum e = 2.592001575023125
    sum de = -2.608861477543245e-19
Info: CFL hydro = 0.011221970869479217 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011221970869479217 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5385e+04 |  512 |      1 | 3.328e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1213.7479177846599 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.701650888664663, dt = 0.011221970869479217 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.2%)
   patch tree reduce : 1984.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 428.70 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9902464972773065e-17,-5.4454487793953456e-17,1.897432406507138e-17)
    sum a = (1.4146398896047741e-18,-2.3601726042293825e-17,-9.674292617001256e-17)
    sum e = 2.5920015746613525
    sum de = -1.2400562347802957e-18
Info: CFL hydro = 0.011219866230405266 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011219866230405266 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5806e+04 |  512 |      1 | 3.239e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1247.2009938477402 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.71287285953414, dt = 0.011219866230405266 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.2%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 429.87 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (73.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.016885344655275e-17,-5.4497300227239473e-17,1.7376725058859676e-17)
    sum a = (5.111438616117736e-17,3.9718228705964977e-17,-6.252810769158401e-17)
    sum e = 2.5920015744812472
    sum de = 1.5246593050577406e-19
Info: CFL hydro = 0.011218072957435408 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011218072957435408 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5544e+04 |  512 |      1 | 3.294e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1226.2788829040276 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.724092725764546, dt = 0.011218072957435408 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (0.9%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 821.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.1%)
   LB compute        : 544.15 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (74.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0969482540824673e-17,-5.392463819225979e-17,1.681467465264319e-17)
    sum a = (6.602116314584349e-17,-2.495855085105081e-17,1.3201158916009704e-16)
    sum e = 2.592001574536909
    sum de = 2.744386749103933e-19
Info: CFL hydro = 0.011216597791433634 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011216597791433634 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5797e+04 |  512 |      1 | 3.241e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1246.027324772761 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.735310798721983, dt = 0.011216597791433634 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1694.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 405.05 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.180963080428369e-17,-5.446070840391809e-17,1.9383786568037686e-17)
    sum a = (-9.064014187647185e-17,8.86985797310391e-19,-9.449472454514662e-17)
    sum e = 2.5920015748327505
    sum de = -2.879912020664621e-19
Info: CFL hydro = 0.011215445705272055 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011215445705272055 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6158e+04 |  512 |      1 | 3.169e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1274.2917554382764 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.746527396513418, dt = 0.011215445705272055 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.00 us    (1.0%)
   patch tree reduce : 982.00 ns  (0.2%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 384.41 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0085424089379993e-17,-5.424042562752335e-17,1.7009160193596356e-17)
    sum a = (1.7727421093571838e-16,-8.206960501813687e-17,6.741092059558973e-17)
    sum e = 2.5920015753511847
    sum de = 6.877907531704919e-19
Info: CFL hydro = 0.011214619909407971 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011214619909407971 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6051e+04 |  512 |      1 | 3.190e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1265.7365783453158 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.75774284221869, dt = 0.011214619909407971 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.88 us    (0.9%)
   patch tree reduce : 1263.00 ns (0.3%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 399.88 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.336844247777472e-17,-5.562286471260531e-17,1.8679028050867796e-17)
    sum a = (-1.2337299151038428e-17,-1.2252698855519385e-16,-3.351225547065795e-17)
    sum e = 2.5920015760544404
    sum de = 5.13301966036106e-19
Info: CFL hydro = 0.011214121852673436 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011214121852673436 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5884e+04 |  512 |      1 | 3.223e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1252.5258039754162 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.768957462128096, dt = 0.011214121852673436 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.2%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 404.01 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2052600511137693e-17,-5.698078727606192e-17,1.7779052156278313e-17)
    sum a = (9.806608650131388e-19,2.972134257456238e-17,-1.2084083733654438e-16)
    sum e = 2.592001576888115
    sum de = 2.710505431213761e-20
Info: CFL hydro = 0.011213951340876249 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011213951340876249 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6109e+04 |  512 |      1 | 3.178e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1270.1705362684004 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.78017158398077, dt = 0.011213951340876249 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.38 us    (1.1%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 392.44 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2156521289370424e-17,-5.601183579451163e-17,1.5952571295191344e-17)
    sum a = (-2.0333051648641076e-16,4.1175315110622554e-17,-4.1451217458465805e-17)
    sum e = 2.592001577786067
    sum de = -6.030874584450618e-19
Info: CFL hydro = 0.01121410685852266 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01121410685852266 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5824e+04 |  512 |      1 | 3.236e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1247.7101949487487 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.79138553532165, dt = 0.01121410685852266 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.32 us    (1.1%)
   patch tree reduce : 1233.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 390.52 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8675907055040215e-17,-5.537660174165238e-17,1.592110232713495e-17)
    sum a = (-1.1003307640033988e-16,-3.3459563245075153e-18,-1.0588209996276188e-16)
    sum e = 2.592001578675622
    sum de = -7.504711912673101e-19
Info: CFL hydro = 0.011214585310991109 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011214585310991109 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6152e+04 |  512 |      1 | 3.170e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1273.5735375264408 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.80259964218017, dt = 0.011214585310991109 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.82 us    (0.9%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 611.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 387.79 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.26 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.802896361871811e-17,-5.582375382263971e-17,1.4383879829403535e-17)
    sum a = (9.2466073860209e-17,-1.3702905997392544e-16,-1.0746286673024574e-16)
    sum e = 2.5920015794843194
    sum de = -4.849263623030869e-19
Info: CFL hydro = 0.011215381814146858 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011215381814146858 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6016e+04 |  512 |      1 | 3.197e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1262.9276128580505 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.81381422749116, dt = 0.011215381814146858 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.1%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 591.00 ns  (0.1%)
   LB compute        : 406.50 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (73.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0224473018001256e-17,-5.817807173513767e-17,1.3104263767854673e-17)
    sum a = (1.25319676511082e-16,-6.765096295657802e-17,1.0924854770832936e-17)
    sum e = 2.5920015801461505
    sum de = -7.763056961585663e-19
Info: CFL hydro = 0.011216490232983546 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011216490232983546 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6089e+04 |  512 |      1 | 3.182e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1268.7403635445137 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.825029609305307, dt = 0.011216490232983546 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.70 us    (0.9%)
   patch tree reduce : 751.00 ns  (0.2%)
   gen split merge   : 692.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 651.00 ns  (0.2%)
   LB compute        : 391.74 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.173791083057377e-17,-5.836212860644424e-17,1.4101025035129222e-17)
    sum a = (-8.380405744357056e-17,5.1992589920890616e-17,-2.971841522869667e-17)
    sum e = 2.5920015806076133
    sum de = 1.859449077460003e-18
Info: CFL hydro = 0.011217903316719634 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011217903316719634 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6070e+04 |  512 |      1 | 3.186e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1267.4141882671624 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.83624609953829, dt = 0.011217903316719634 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.28 us    (1.1%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 385.43 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.956728387114917e-17,-5.711434743118499e-17,1.3479695875132091e-17)
    sum a = (-1.2206446790841152e-16,2.6108997776275177e-17,8.912011753570148e-17)
    sum e = 2.592001580833006
    sum de = -8.529621778850804e-19
Info: CFL hydro = 0.011219612494266869 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011219612494266869 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5969e+04 |  512 |      1 | 3.206e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1259.5854455816514 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.84746400285501, dt = 0.011219612494266869 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (1.0%)
   patch tree reduce : 1592.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 431.18 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (74.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.814898479921226e-17,-5.68823552713274e-17,1.512998710692659e-17)
    sum a = (8.888592986644461e-17,1.2038124403562777e-16,2.0885734548087286e-16)
    sum e = 2.592001580808357
    sum de = -7.301424005332069e-19
Info: CFL hydro = 0.011221608106402402 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011221608106402402 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5733e+04 |  512 |      1 | 3.254e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1241.1728695708402 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.858683615349275, dt = 0.011221608106402402 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.1%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.3%)
   LB compute        : 428.43 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.04367055932653e-17,-5.529939299444425e-17,1.8165644769668753e-17)
    sum a = (9.484600604903192e-19,4.579539872318072e-17,-5.4896517019675796e-17)
    sum e = 2.5920015805422727
    sum de = 7.741881137904305e-19
Info: CFL hydro = 0.011223879285220196 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011223879285220196 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5643e+04 |  512 |      1 | 3.273e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1234.2332715209939 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.869905223455678, dt = 0.011223879285220196 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 398.62 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.55 us    (76.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9903928645705916e-17,-5.5004096980240666e-17,1.6096743079077603e-17)
    sum a = (-1.1888244295238382e-16,-7.196294341677012e-17,5.555516983946073e-17)
    sum e = 2.5920015800664404
    sum de = -9.469828350303078e-19
Info: CFL hydro = 0.011223099190948098 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011223099190948098 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5705e+04 |  512 |      1 | 3.260e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1239.369654778011 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.8811291027409, dt = 0.011223099190948098 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.5%)
   patch tree reduce : 1923.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1013.00 ns (0.2%)
   LB compute        : 408.78 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (72.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.779916696825981e-17,-5.670360421440243e-17,1.7427953611509615e-17)
    sum a = (-8.784379473825155e-17,2.800884524312153e-17,-4.481766520403329e-18)
    sum e = 2.592001579412391
    sum de = 8.504210790433175e-19
Info: CFL hydro = 0.011219714574926192 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011219714574926192 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5351e+04 |  512 |      1 | 3.335e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1211.3985582129462 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.892352201931846, dt = 0.011219714574926192 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.2%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 426.47 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.717930148119553e-17,-5.55544380029943e-17,1.692664563200663e-17)
    sum a = (1.3231603313013095e-17,-2.146037254152633e-17,1.1083516916754466e-16)
    sum e = 2.5920015786542328
    sum de = -6.894848190650005e-19
Info: CFL hydro = 0.011216961505078482 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011216961505078482 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.3684e+04 |  512 |      1 | 3.742e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1079.4939983619101 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.903571916506774, dt = 0.011216961505078482 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 430.44 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (74.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7938947733347503e-17,-5.605885628747961e-17,1.8866744104506504e-17)
    sum a = (6.888044822017658e-17,-1.0541665197011385e-16,-4.1755661428499734e-17)
    sum e = 2.59200157789449
    sum de = -6.776263578034403e-21
Info: CFL hydro = 0.01121486946769966 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01121486946769966 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5734e+04 |  512 |      1 | 3.254e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1240.9059905446106 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.91478887801185, dt = 0.01121486946769966 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.1%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 447.88 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8956200421682027e-17,-5.760348862943361e-17,1.7478816245926344e-17)
    sum a = (1.0818884850494204e-16,-7.825380968218276e-17,1.6217496096038177e-17)
    sum e = 2.5920015772184586
    sum de = -9.012430558785756e-19
Info: CFL hydro = 0.011213460040622647 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011213460040622647 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5831e+04 |  512 |      1 | 3.234e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1248.3116672250271 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.92600374747955, dt = 0.011213460040622647 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.24 us    (1.0%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 424.31 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.041548233573889e-17,-5.848448251567512e-17,1.81140502987856e-17)
    sum a = (-8.106406171326519e-17,4.9442871671856456e-17,9.695369507234374e-18)
    sum e = 2.5920015767085514
    sum de = 2.236166980751353e-19
Info: CFL hydro = 0.011212746602125229 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011212746602125229 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6603e+04 |  512 |      1 | 3.084e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1309.0738059276405 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.937217207520174, dt = 0.011212746602125229 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.03 us    (1.0%)
   patch tree reduce : 1041.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 661.00 ns  (0.2%)
   LB compute        : 375.14 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.847538386323902e-17,-5.72169646257119e-17,1.8197845574191572e-17)
    sum a = (-2.1797017316083078e-17,7.689552120049292e-17,5.225897839467031e-17)
    sum e = 2.5920015764373114
    sum de = 6.437450399132683e-20
Info: CFL hydro = 0.011212734290393059 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011212734290393059 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6671e+04 |  512 |      1 | 3.071e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1314.3585710672628 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.9484299541223, dt = 0.011212734290393059 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.79 us    (1.0%)
   patch tree reduce : 851.00 ns  (0.2%)
   gen split merge   : 682.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 421.00 ns  (0.1%)
   LB compute        : 366.15 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.69 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.840805490832767e-17,-5.604257292610159e-17,1.905336240344557e-17)
    sum a = (7.182535816108171e-17,-6.1240075510671234e-18,-5.509264919267842e-17)
    sum e = 2.5920015764604867
    sum de = -4.573977915173222e-19
Info: CFL hydro = 0.011213419860186678 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011213419860186678 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6176e+04 |  512 |      1 | 3.165e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1275.3416027521089 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.959642688412693, dt = 0.011213419860186678 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.45 us    (0.9%)
   patch tree reduce : 561.00 ns  (0.1%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 621.00 ns  (0.2%)
   LB compute        : 369.96 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.81 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.977439359114821e-17,-5.660489777099299e-17,1.7808142655818815e-17)
    sum a = (1.0666662865477239e-16,3.544137639616141e-17,7.289676674793189e-17)
    sum e = 2.59200157681222
    sum de = -1.2874900798265365e-19
Info: CFL hydro = 0.011214791717174988 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011214791717174988 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6466e+04 |  512 |      1 | 3.109e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1298.237355908666 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.97085610827288, dt = 0.011214791717174988 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (0.8%)
   patch tree reduce : 631.00 ns  (0.2%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 561.00 ns  (0.1%)
   LB compute        : 394.59 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.62 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1253435089798624e-17,-5.604989129076588e-17,1.9402356918373288e-17)
    sum a = (-1.977890507626201e-16,-6.040285459307792e-17,9.936582806568949e-17)
    sum e = 2.5920015775012506
    sum de = 1.3891340334970526e-18
Info: CFL hydro = 0.011216829989413505 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011216829989413505 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6511e+04 |  512 |      1 | 3.101e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1301.9404084297146 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.982070899990056, dt = 0.011216829989413505 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 us    (1.0%)
   patch tree reduce : 801.00 ns  (0.2%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 601.00 ns  (0.2%)
   LB compute        : 366.40 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7368847126000315e-17,-5.725632370567196e-17,2.0659148830125436e-17)
    sum a = (-8.4893030105615e-18,1.4652244261642578e-16,-3.943720350285673e-17)
    sum e = 2.592001578509241
    sum de = 7.928228386300251e-19
Info: CFL hydro = 0.011219506479159808 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011219506479159808 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6441e+04 |  512 |      1 | 3.114e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1296.7073733692366 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.99328772997947, dt = 0.0067122700205288766 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (0.8%)
   patch tree reduce : 480.00 ns  (0.1%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.2%)
   LB compute        : 380.53 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.41 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.813288439695085e-17,-5.501159830402155e-17,1.957015329819142e-17)
    sum a = (3.4806142343302146e-17,6.920538361127049e-17,-4.525676708388992e-18)
    sum e = 2.592001557538837
    sum de = -7.928228386300251e-19
Info: CFL hydro = 0.011221591689708058 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011221591689708058 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6237e+04 |  512 |      1 | 3.153e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 766.3068428774216 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 2428                                                    [SPH][rank=0]
Info: time since start : 823.493902935 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14993975287022018 max=0.15007099212893293 delta=0.00013123925871275088
Number of particle pairs: 130816
Distance min=0.127213 max=1.837622 mean=0.800567
---------------- t = 23, dt = 0.011221591689708058 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.35 us   (1.5%)
   patch tree reduce : 1653.00 ns (0.2%)
   gen split merge   : 571.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.1%)
   LB compute        : 727.42 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.81 us    (73.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8645535841683465e-17,-5.4414419747416536e-17,1.965557233575728e-17)
    sum a = (-5.2692225582795514e-20,1.1209978258153176e-16,8.064837860033425e-17)
    sum e = 2.592001580135665
    sum de = -4.0318768289304696e-19
Info: CFL hydro = 0.011222850960374309 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011222850960374309 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5162e+04 |  512 |      1 | 3.377e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1196.3454474246967 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.011221591689708, dt = 0.011222850960374309 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.14 us    (1.0%)
   patch tree reduce : 802.00 ns  (0.2%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 642.00 ns  (0.2%)
   LB compute        : 408.01 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.860016198076494e-17,-5.298276465996732e-17,2.1038834736863966e-17)
    sum a = (-1.8606210322458238e-17,-1.2301585531476756e-16,-6.29555001879778e-17)
    sum e = 2.592001581933522
    sum de = -7.453889935837843e-20
Info: CFL hydro = 0.011221212309024144 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011221212309024144 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6472e+04 |  512 |      1 | 3.108e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1299.8481436891166 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.022444442650084, dt = 0.011221212309024144 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.14 us    (1.1%)
   patch tree reduce : 1152.00 ns (0.3%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 377.72 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.824083027574894e-17,-5.567500806083828e-17,1.9564916093478546e-17)
    sum a = (-1.214965628104636e-16,-1.6565264784884625e-16,1.446694326834308e-17)
    sum e = 2.592001583509037
    sum de = -3.7777669447541795e-19
Info: CFL hydro = 0.011220081759525082 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011220081759525082 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6155e+04 |  512 |      1 | 3.169e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1274.6294797433495 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.03366565495911, dt = 0.011220081759525082 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.83 us    (1.0%)
   patch tree reduce : 1393.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 612.00 ns  (0.2%)
   LB compute        : 373.11 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (73.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.606654413399219e-17,-5.796199701842489e-17,2.018185423467711e-17)
    sum a = (-1.0919878282861229e-16,-5.8751831524817e-18,3.3260503726206814e-17)
    sum e = 2.5920015850288474
    sum de = 4.946672411965114e-19
Info: CFL hydro = 0.0112194481340541 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.0112194481340541 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6308e+04 |  512 |      1 | 3.140e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1286.575515392984 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.044885736718633, dt = 0.0112194481340541 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (0.8%)
   patch tree reduce : 682.00 ns  (0.2%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 571.00 ns  (0.2%)
   LB compute        : 368.93 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.38 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.526371953032099e-17,-5.694639096213983e-17,2.077171442661785e-17)
    sum a = (2.7312136927082342e-17,1.30574262340033e-17,1.163444340868125e-16)
    sum e = 2.5920015863837054
    sum de = -5.285485590866834e-19
Info: CFL hydro = 0.011219294167986147 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011219294167986147 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5696e+04 |  512 |      1 | 3.262e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1238.199236540972 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.056105184852687, dt = 0.011219294167986147 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.22 us    (1.1%)
   patch tree reduce : 1192.00 ns (0.3%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 376.45 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6183272050387416e-17,-5.668658901655799e-17,2.2648509044771725e-17)
    sum a = (1.070471836173148e-16,-3.820625456632531e-17,5.1632526379408183e-17)
    sum e = 2.5920015874735713
    sum de = -1.0926725019580474e-18
Info: CFL hydro = 0.011219595623444534 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011219595623444534 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6491e+04 |  512 |      1 | 3.105e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1300.9269141371624 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.067324479020673, dt = 0.011219595623444534 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (1.1%)
   patch tree reduce : 1042.00 ns (0.3%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 397.90 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7946632016244994e-17,-5.749270688432811e-17,2.2733036156644127e-17)
    sum a = (-3.169730103391721e-17,5.88703890323783e-17,-7.666718822296747e-17)
    sum e = 2.5920015882145924
    sum de = 3.7015339795012925e-19
Info: CFL hydro = 0.01122032164248115 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01122032164248115 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6518e+04 |  512 |      1 | 3.100e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1303.0828687723324 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.078544074644118, dt = 0.01122032164248115 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (0.8%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 541.00 ns  (0.1%)
   LB compute        : 373.88 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.90 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.650656080943186e-17,-5.635836036136516e-17,2.1181176929584155e-17)
    sum a = (6.245785139080695e-17,1.8725499666485956e-16,3.4024540997157345e-17)
    sum e = 2.5920015885460224
    sum de = -3.5575383784680614e-19
Info: CFL hydro = 0.011221435335347085 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011221435335347085 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6400e+04 |  512 |      1 | 3.122e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1293.8309560212308 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.089764396286597, dt = 0.011221435335347085 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.00 us    (1.0%)
   patch tree reduce : 732.00 ns  (0.2%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 591.00 ns  (0.1%)
   LB compute        : 393.83 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.90 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.806848278790521e-17,-5.3618730549293004e-17,2.2200259209084748e-17)
    sum a = (-5.2560495018838523e-17,-3.0807387890741114e-17,-1.0950176312571336e-16)
    sum e = 2.592001588435675
    sum de = -2.9264988327636077e-19
Info: CFL hydro = 0.011222894311300762 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011222894311300762 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6434e+04 |  512 |      1 | 3.115e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1296.6536257362677 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.100985831621944, dt = 0.011222894311300762 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.53 us    (0.9%)
   patch tree reduce : 912.00 ns  (0.2%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 682.00 ns  (0.2%)
   LB compute        : 374.84 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6722544046586336e-17,-5.4996412697343175e-17,1.994473921955453e-17)
    sum a = (-4.76220625433843e-17,8.547849927875717e-19,-5.072358548810496e-17)
    sum e = 2.5920015878834564
    sum de = 1.5245004863801304e-18
Info: CFL hydro = 0.011224651487983628 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011224651487983628 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6792e+04 |  512 |      1 | 3.049e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1325.0956519322144 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.112208725933247, dt = 0.011224651487983628 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (0.9%)
   patch tree reduce : 892.00 ns  (0.2%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 571.00 ns  (0.2%)
   LB compute        : 363.99 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.50 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6288382062878094e-17,-5.459500039550758e-17,1.9731774807824066e-17)
    sum a = (-7.361982117676247e-17,9.989128664858459e-17,3.2533058278577666e-17)
    sum e = 2.5920015869224313
    sum de = 1.911753361952956e-18
Info: CFL hydro = 0.011226655963162462 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011226655963162462 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6791e+04 |  512 |      1 | 3.049e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1325.2374049668874 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.12343337742123, dt = 0.011226655963162462 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.74 us    (1.0%)
   patch tree reduce : 631.00 ns  (0.2%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 581.00 ns  (0.2%)
   LB compute        : 367.00 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.523174742469393e-17,-5.308083074646863e-17,2.045043821785608e-17)
    sum a = (9.190402345399251e-17,7.262305990948791e-17,-9.79109371704312e-17)
    sum e = 2.592001585617725
    sum de = -1.7533582008164017e-19
Info: CFL hydro = 0.01122885403797215 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01122885403797215 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6480e+04 |  512 |      1 | 3.107e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1300.90903317913 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 23.134660033384392, dt = 0.01122885403797215 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.34 us    (1.1%)
   patch tree reduce : 1032.00 ns (0.3%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 385.26 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.738997890396841e-17,-5.229996123679026e-17,1.8827956771785837e-17)
    sum a = (-2.697256480665988e-17,3.0066769386716264e-17,9.365457628168761e-17)
    sum e = 2.5920015840623742
    sum de = -1.1214716221646936e-18
Info: CFL hydro = 0.011231190109150548 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011231190109150548 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6417e+04 |  512 |      1 | 3.119e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1296.1637786350266 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.145888887422366, dt = 0.011231190109150548 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.77 us    (1.0%)
   patch tree reduce : 822.00 ns  (0.2%)
   gen split merge   : 692.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 691.00 ns  (0.2%)
   LB compute        : 363.58 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.35 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494140625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.622188785893626e-17,-5.2312402456719533e-17,2.0787814828879257e-17)
    sum a = (-5.29849601693666e-17,-9.685270163997672e-17,1.929120925503458e-18)
    sum e = 2.5920015823714873
    sum de = -1.2180333781516839e-18
Info: CFL hydro = 0.011233607697986116 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011233607697986116 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6827e+04 |  512 |      1 | 3.043e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1328.841722790881 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.157120077531516, dt = 0.011233607697986116 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.37 us    (0.9%)
   patch tree reduce : 631.00 ns  (0.2%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 481.00 ns  (0.1%)
   LB compute        : 366.25 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.63 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.568914521621125e-17,-5.3911099217630874e-17,2.0350908458421913e-17)
    sum a = (1.8666513647291883e-16,1.2472542530034268e-16,-6.470898036153861e-17)
    sum e = 2.592001580674403
    sum de = -4.777265822514254e-19
Info: CFL hydro = 0.011234983348909197 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011234983348909197 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6364e+04 |  512 |      1 | 3.129e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1292.532070576217 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.1683536852295, dt = 0.011234983348909197 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.70 us    (0.8%)
   patch tree reduce : 962.00 ns  (0.2%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 701.00 ns  (0.2%)
   LB compute        : 424.77 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.906789696237056e-17,-5.141224360301344e-17,1.932267822309097e-17)
    sum a = (-1.322721229421453e-17,-1.343344381045386e-16,2.8641151950115074e-17)
    sum e = 2.5920015790999265
    sum de = -5.454892180317694e-19
Info: CFL hydro = 0.01123359963566909 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01123359963566909 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1880e+04 |  512 |      1 | 4.310e-02 | 0.0% |   1.1% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 938.4370171207146 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.17958866857841, dt = 0.01123359963566909 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.16 us    (1.0%)
   patch tree reduce : 951.00 ns  (0.2%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 742.00 ns  (0.2%)
   LB compute        : 395.83 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.801149102308215e-17,-5.4278847042010804e-17,2.0287604604075915e-17)
    sum a = (2.7137959848072544e-17,3.522036178330024e-17,-1.8857962066909373e-17)
    sum e = 2.592001577769316
    sum de = -1.2739375526704677e-18
Info: CFL hydro = 0.011229898219354014 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011229898219354014 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6469e+04 |  512 |      1 | 3.109e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1300.8236356370242 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.19082226821408, dt = 0.011229898219354014 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.57 us    (0.9%)
   patch tree reduce : 742.00 ns  (0.2%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 440.00 ns  (0.1%)
   LB compute        : 390.86 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.54 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7860000874531615e-17,-5.301331883244068e-17,1.9768732549378664e-17)
    sum a = (2.8821183720856294e-17,1.5456825272833208e-16,7.792594694522314e-18)
    sum e = 2.592001576801159
    sum de = -2.2514135738019303e-18
Info: CFL hydro = 0.011227020663112087 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011227020663112087 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6025e+04 |  512 |      1 | 3.195e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1265.3122887660622 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.202052166433436, dt = 0.011227020663112087 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 us    (0.5%)
   patch tree reduce : 672.00 ns  (0.1%)
   gen split merge   : 621.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 601.00 ns  (0.1%)
   LB compute        : 600.05 us  (98.2%)
   LB move op cnt    : 0
   LB apply          : 2.27 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (74.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8389941955783585e-17,-5.068443223715108e-17,1.9674691563442702e-17)
    sum a = (-3.461001017029952e-17,-8.100551479595097e-17,1.2308903896141033e-16)
    sum e = 2.59200157630243
    sum de = 2.913793338554793e-19
Info: CFL hydro = 0.011224990445230279 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011224990445230279 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5566e+04 |  512 |      1 | 3.289e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1228.812444374124 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.21327918709655, dt = 0.011224990445230279 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.02 us    (0.9%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 418.33 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (72.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.754229236854368e-17,-5.2703569048025145e-17,2.1795553643150224e-17)
    sum a = (-7.340612492856558e-17,4.5144064268060056e-17,-3.169730103391721e-17)
    sum e = 2.592001576331111
    sum de = 1.1858461261560205e-19
Info: CFL hydro = 0.01122381836159875 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01122381836159875 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6148e+04 |  512 |      1 | 3.171e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1274.4941554199481 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.22450417754178, dt = 0.01122381836159875 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.32 us    (0.8%)
   patch tree reduce : 862.00 ns  (0.2%)
   gen split merge   : 571.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 389.92 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 2.70 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6297987416499955e-17,-5.1510309689514754e-17,2.060192836640662e-17)
    sum a = (-2.928809538643717e-17,-3.543552170442999e-18,1.5546548423617245e-16)
    sum e = 2.592001576910034
    sum de = 6.437450399132683e-20
Info: CFL hydro = 0.011223503120212827 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011223503120212827 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6054e+04 |  512 |      1 | 3.189e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1266.9139881388405 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.235727995903382, dt = 0.011223503120212827 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.61 us    (0.9%)
   patch tree reduce : 862.00 ns  (0.2%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 692.00 ns  (0.2%)
   LB compute        : 383.27 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.69 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.643959777275372e-17,-5.1990394411491336e-17,2.327130187770171e-17)
    sum a = (-4.098576946581778e-17,1.4500607745798753e-17,-9.515045001906585e-17)
    sum e = 2.592001578024299
    sum de = 9.283481101907132e-19
Info: CFL hydro = 0.01122403060285334 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01122403060285334 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6712e+04 |  512 |      1 | 3.064e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1318.863329379899 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.246951499023595, dt = 0.01122403060285334 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.66 us    (1.0%)
   patch tree reduce : 661.00 ns  (0.2%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 581.00 ns  (0.2%)
   LB compute        : 371.49 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.69 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5993726405582633e-17,-5.148963530933817e-17,2.0849014653384275e-17)
    sum a = (6.063118757060338e-17,5.698078727606192e-17,-2.014013955609073e-17)
    sum e = 2.592001579622145
    sum de = 1.0503208545953324e-19
Info: CFL hydro = 0.011225374166859599 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011225374166859599 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5843e+04 |  512 |      1 | 3.232e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1250.279184140846 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.25817552962645, dt = 0.011225374166859599 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.47 us    (0.9%)
   patch tree reduce : 621.00 ns  (0.2%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 611.00 ns  (0.2%)
   LB compute        : 356.65 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.90 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.706293948303353e-17,-5.07087657996598e-17,2.0996845619602675e-17)
    sum a = (1.0558936537619079e-17,3.2394009349956397e-17,-9.273831702572011e-18)
    sum e = 2.5920015816172577
    sum de = 7.284483346386983e-19
Info: CFL hydro = 0.011227496338234774 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011227496338234774 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6567e+04 |  512 |      1 | 3.091e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1307.576361344159 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.269400903793308, dt = 0.011227496338234774 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.55 us    (0.9%)
   patch tree reduce : 581.00 ns  (0.2%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 531.00 ns  (0.1%)
   LB compute        : 370.33 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.71 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6814115084448104e-17,-5.028265401708226e-17,2.0884783160680932e-17)
    sum a = (5.774482454701246e-17,2.6408465258337396e-16,1.094183337685406e-16)
    sum e = 2.5920015838939516
    sum de = -2.964615315390051e-19
Info: CFL hydro = 0.011230348624260745 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011230348624260745 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6100e+04 |  512 |      1 | 3.180e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1270.9591053671693 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.280628400131544, dt = 0.011230348624260745 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.59 us    (0.9%)
   patch tree reduce : 1112.00 ns (0.3%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 631.00 ns  (0.2%)
   LB compute        : 386.02 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.81 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8135811742816556e-17,-4.605666434169542e-17,2.2783532872827638e-17)
    sum a = (-5.715935537387029e-17,1.2487471993949396e-16,1.5684719148478798e-17)
    sum e = 2.5920015863157557
    sum de = 9.147955830346444e-19
Info: CFL hydro = 0.01123387235392548 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01123387235392548 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6551e+04 |  512 |      1 | 3.094e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1306.8848449457028 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.291858748755804, dt = 0.01123387235392548 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (0.8%)
   patch tree reduce : 782.00 ns  (0.2%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 611.00 ns  (0.2%)
   LB compute        : 363.66 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.46 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.65235760072763e-17,-4.5385570301981204e-17,2.254678377593827e-17)
    sum a = (-3.5813149321106684e-17,9.801632162159678e-17,-5.526828994462107e-18)
    sum e = 2.592001588734073
    sum de = -3.6083603553033194e-19
Info: CFL hydro = 0.011237999726501495 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011237999726501495 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6243e+04 |  512 |      1 | 3.152e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1283.03035433516 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 23.30309262110973, dt = 0.011237999726501495 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.46 us    (0.9%)
   patch tree reduce : 742.00 ns  (0.2%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 601.00 ns  (0.2%)
   LB compute        : 383.42 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 2.58 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.630036588501585e-17,-4.4399249139298035e-17,2.2449449525903388e-17)
    sum a = (1.0695936324134347e-16,1.46449258969783e-16,9.944193905819797e-17)
    sum e = 2.592001590998375
    sum de = -3.2017845406212553e-19
Info: CFL hydro = 0.011242654825497887 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011242654825497887 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6585e+04 |  512 |      1 | 3.087e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1310.52894150916 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 23.31433062083623, dt = 0.011242654825497887 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.68 us    (1.0%)
   patch tree reduce : 882.00 ns  (0.2%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 521.00 ns  (0.1%)
   LB compute        : 355.30 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.52 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (72.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.840732307186124e-17,-4.256084163079725e-17,2.4086201783068973e-17)
    sum a = (-6.091806746544304e-17,1.8735013540549518e-17,-1.7947557502673295e-17)
    sum e = 2.5920015929668736
    sum de = 5.819116347637043e-19
Info: CFL hydro = 0.01124260822343212 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01124260822343212 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6217e+04 |  512 |      1 | 3.157e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1281.9219807869356 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.32557327566173, dt = 0.01124260822343212 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.76 us    (1.0%)
   patch tree reduce : 1232.00 ns (0.3%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 374.09 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6725196953777134e-17,-4.3358932167326255e-17,2.331191880158845e-17)
    sum a = (-1.1512080351494535e-16,8.020927672047762e-18,6.940590680307168e-17)
    sum e = 2.592001594478244
    sum de = -4.929731753020028e-19
Info: CFL hydro = 0.01124188940090169 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01124188940090169 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6352e+04 |  512 |      1 | 3.131e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1292.5937643420343 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.336815883885162, dt = 0.01124188940090169 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.02 us    (1.0%)
   patch tree reduce : 1173.00 ns (0.3%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 692.00 ns  (0.2%)
   LB compute        : 396.75 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.493475903866173e-17,-4.31516394882106e-17,2.443492185932178e-17)
    sum a = (1.25319676511082e-16,-9.163470763434712e-17,8.676287227733781e-17)
    sum e = 2.592001595465098
    sum de = -1.644090950620597e-18
Info: CFL hydro = 0.011241136148325179 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011241136148325179 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5868e+04 |  512 |      1 | 3.227e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1254.3025519653133 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.348057773286065, dt = 0.011241136148325179 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.32 us    (1.1%)
   patch tree reduce : 1123.00 ns (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 388.30 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.800115383299386e-17,-4.459097885855731e-17,2.5703926292107438e-17)
    sum a = (6.744604874597826e-18,-2.5994831287512453e-17,-5.073309936216852e-17)
    sum e = 2.5920015958749905
    sum de = -3.017554874593445e-21
Info: CFL hydro = 0.011240385975538685 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011240385975538685 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6177e+04 |  512 |      1 | 3.165e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1278.6044012218892 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.35929890943439, dt = 0.011240385975538685 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.23 us    (1.0%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 417.13 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.760523030465647e-17,-4.462702180452888e-17,2.4198538680665627e-17)
    sum a = (-2.2218555120745443e-17,5.3956838996782606e-17,4.2197690654222074e-17)
    sum e = 2.592001595690656
    sum de = -4.1165801236558996e-19
Info: CFL hydro = 0.011239678197012538 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011239678197012538 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5936e+04 |  512 |      1 | 3.213e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1259.4529495733545 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.37053929540993, dt = 0.011239678197012538 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (0.9%)
   patch tree reduce : 982.00 ns  (0.2%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.2%)
   LB compute        : 385.89 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 2.75 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.706659866536567e-17,-4.3497615177714303e-17,2.5335812549494296e-17)
    sum a = (4.756937031780151e-17,-6.687814364803035e-17,-7.151213215345064e-17)
    sum e = 2.5920015949359096
    sum de = -9.22418879559933e-19
Info: CFL hydro = 0.011239053223042708 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011239053223042708 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6511e+04 |  512 |      1 | 3.101e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1304.8282513609324 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.38177897360694, dt = 0.011239053223042708 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.43 us    (0.8%)
   patch tree reduce : 842.00 ns  (0.2%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 409.60 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7761843308471993e-17,-4.498726830512792e-17,2.383371820215141e-17)
    sum a = (-1.1416648876272362e-16,-2.2198063699685465e-17,-2.6202672843977925e-17)
    sum e = 2.592001593674064
    sum de = 3.9810548520952116e-20
Info: CFL hydro = 0.011238551545234652 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011238551545234652 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6596e+04 |  512 |      1 | 3.085e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1311.504278694336 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.393018026829985, dt = 0.011238551545234652 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.42 us    (0.9%)
   patch tree reduce : 18.86 us   (4.7%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 631.00 ns  (0.2%)
   LB compute        : 369.40 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 2.48 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.535336949745838e-17,-4.501087003117021e-17,2.3947884690914133e-17)
    sum a = (-9.143857546134448e-17,-1.2783719395559333e-17,-6.892143106229653e-17)
    sum e = 2.5920015920026716
    sum de = -3.3373098121819433e-19
Info: CFL hydro = 0.011238212971059485 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011238212971059485 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6261e+04 |  512 |      1 | 3.149e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1284.9775223131721 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.404256578375218, dt = 0.011238212971059485 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.77 us    (0.9%)
   patch tree reduce : 1012.00 ns (0.2%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 691.00 ns  (0.2%)
   LB compute        : 410.04 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.483083826042899e-17,-4.5042338999226606e-17,2.2945360211466466e-17)
    sum a = (-7.876902255454787e-17,-2.3234344136147112e-17,-2.971256053696525e-17)
    sum e = 2.592001590048013
    sum de = 5.21772295508649e-19
Info: CFL hydro = 0.011235852013337646 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011235852013337646 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6247e+04 |  512 |      1 | 3.151e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1283.80195703086 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 23.415494791346276, dt = 0.011235852013337646 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 424.96 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3796021496900206e-17,-4.520407485830713e-17,2.2756546403128115e-17)
    sum a = (-8.447734699268405e-17,-3.379035332790048e-17,-3.838335899120082e-17)
    sum e = 2.5920015879414113
    sum de = -2.507217523872729e-19
Info: CFL hydro = 0.011229146534652118 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011229146534652118 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6349e+04 |  512 |      1 | 3.132e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1291.5917623990965 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.426730643359615, dt = 0.011229146534652118 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.2%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 366.19 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2616301113018726e-17,-4.581369463484142e-17,2.244743697562071e-17)
    sum a = (8.93425958214955e-18,-6.429622459447337e-17,-6.269203906006382e-17)
    sum e = 2.592001585824694
    sum de = 5.38712954453735e-19
Info: CFL hydro = 0.011222772747126266 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011222772747126266 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7443e+04 |  512 |      1 | 2.935e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1377.2457245428532 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.43795978989427, dt = 0.011222772747126266 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.23 us    (1.1%)
   patch tree reduce : 1783.00 ns (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 368.65 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.337155634637213e-17,-4.677898693405957e-17,2.139414134131462e-17)
    sum a = (-6.1444989721271e-17,-1.1180997534082638e-16,1.5702283223673064e-17)
    sum e = 2.592001583879779
    sum de = -1.7957098481791167e-19
Info: CFL hydro = 0.01121682795719507 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01121682795719507 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6918e+04 |  512 |      1 | 3.026e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1335.0269022697732 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.449182562641393, dt = 0.01121682795719507 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.17 us    (1.1%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 373.53 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.224599186100631e-17,-4.827925169023639e-17,2.2133662090639826e-17)
    sum a = (1.0500975089478004e-16,-1.7581639269459438e-17,-7.332415924432568e-17)
    sum e = 2.5920015822432454
    sum de = -1.260385025514399e-18
Info: CFL hydro = 0.011211405897508452 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011211405897508452 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6879e+04 |  512 |      1 | 3.033e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1331.2189513106664 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.46039939059859, dt = 0.011211405897508452 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 us    (1.0%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 392.39 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4221950320361135e-17,-4.790089223709326e-17,2.0811965432271374e-17)
    sum a = (7.376911581591372e-19,-9.393267413893014e-17,1.16157083951407e-16)
    sum e = 2.5920015810278794
    sum de = 4.743384504624082e-19
Info: CFL hydro = 0.011206594456207315 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011206594456207315 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7341e+04 |  512 |      1 | 2.953e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1366.9996545683523 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.471610796496098, dt = 0.011206594456207315 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.90 us    (1.0%)
   patch tree reduce : 1372.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 380.95 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.376235701944453e-17,-4.909085833150473e-17,2.3213120878620708e-17)
    sum a = (5.105291189799743e-18,-3.617614020845483e-17,-1.6463393148757886e-17)
    sum e = 2.5920015803156953
    sum de = 4.777265822514254e-19
Info: CFL hydro = 0.011202473746569932 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011202473746569932 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7400e+04 |  512 |      1 | 2.943e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1371.0671977585616 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.482817390952306, dt = 0.011202473746569932 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.32 us    (1.1%)
   patch tree reduce : 912.00 ns  (0.2%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 732.00 ns  (0.2%)
   LB compute        : 375.47 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3918970023260064e-17,-4.9183801562741045e-17,2.236711792343027e-17)
    sum a = (-1.1650836545529231e-18,-1.728597733702264e-17,2.0772446263084275e-17)
    sum e = 2.592001580152958
    sum de = -1.260385025514399e-18
Info: CFL hydro = 0.011199115282295535 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011199115282295535 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7492e+04 |  512 |      1 | 2.927e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1377.8279460490303 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.494019864698878, dt = 0.005980135301122402 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.78 us    (1.0%)
   patch tree reduce : 1032.00 ns (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 681.00 ns  (0.2%)
   LB compute        : 357.46 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3693564391600327e-17,-4.9278208466910225e-17,2.2640824761874234e-17)
    sum a = (-1.1205294504768038e-16,-1.9306724188122848e-16,-1.6076983494484053e-17)
    sum e = 2.5920015603640727
    sum de = -9.486769009248164e-19
Info: CFL hydro = 0.011197945121168998 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011197945121168998 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7371e+04 |  512 |      1 | 2.947e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 730.4097029395356 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 2473                                                    [SPH][rank=0]
Info: time since start : 825.84237221 (s)                                             [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.14992428253780737 max=0.15007796002072937 delta=0.0001536774829219989
Number of particle pairs: 130816
Distance min=0.126148 max=1.836387 mean=0.800611
---------------- t = 23.5, dt = 0.011197945121168998 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.52 us    (1.6%)
   patch tree reduce : 1853.00 ns (0.3%)
   gen split merge   : 570.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.1%)
   LB compute        : 574.69 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.93 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.65 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2329421218179066e-17,-5.1892328324990023e-17,2.2335648955373876e-17)
    sum a = (-1.0423693158623237e-16,3.182610425200849e-17,-7.606415497463104e-17)
    sum e = 2.592001580626709
    sum de = 9.825582188149884e-20
Info: CFL hydro = 0.011195585553318878 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011195585553318878 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2839e+04 |  512 |      1 | 3.988e-02 | 0.0% |   1.1% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1010.8775650323535 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.511197945121168, dt = 0.011195585553318878 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.43 us    (0.8%)
   patch tree reduce : 591.00 ns  (0.1%)
   gen split merge   : 612.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 731.00 ns  (0.2%)
   LB compute        : 406.04 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.52 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1151164507230443e-17,-5.0588195741815833e-17,2.113982816923099e-17)
    sum a = (-1.3558295111626428e-16,-5.764236744171259e-17,6.463579671489583e-18)
    sum e = 2.592001581963045
    sum de = -9.215718466126788e-19
Info: CFL hydro = 0.011194407339290467 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011194407339290467 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5454e+04 |  512 |      1 | 3.313e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1216.5429106395713 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.52239353067449, dt = 0.011194407339290467 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.57 us    (0.5%)
   patch tree reduce : 621.00 ns  (0.1%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 692.00 ns  (0.1%)
   LB compute        : 682.34 us  (98.0%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9183988085472743e-17,-5.15959345560868e-17,2.161698554534186e-17)
    sum a = (1.0171941414172103e-16,9.664925110230982e-17,-1.2675407598528031e-16)
    sum e = 2.5920015835477996
    sum de = -1.3688052427629493e-18
Info: CFL hydro = 0.011194161846882952 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011194161846882952 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6437e+04 |  512 |      1 | 3.115e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1293.7801624397962 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.533587938013778, dt = 0.011194161846882952 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.33 us    (1.1%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 702.00 ns  (0.2%)
   LB compute        : 389.50 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.173517000743976e-17,-4.9521910010230654e-17,1.950636917616433e-17)
    sum a = (1.792706608161332e-16,-3.688455790795686e-19,6.743433936251541e-17)
    sum e = 2.5920015854359706
    sum de = -1.5212711732687234e-18
Info: CFL hydro = 0.011194867670501785 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011194867670501785 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5864e+04 |  512 |      1 | 3.227e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1248.6226120660463 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.54478209986066, dt = 0.011194867670501785 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.17 us    (1.1%)
   patch tree reduce : 1333.00 ns (0.3%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 375.11 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.401264509096281e-17,-5.029033829997975e-17,2.1286195462516533e-17)
    sum a = (7.948914963751275e-17,8.565706737656553e-17,-1.176910131850395e-16)
    sum e = 2.5920015874978524
    sum de = 7.453889935837843e-20
Info: CFL hydro = 0.011196532713568227 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011196532713568227 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6137e+04 |  512 |      1 | 3.173e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1270.2235620464496 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.555976967531162, dt = 0.011196532713568227 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (1.1%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 400.14 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (59.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.456591345958216e-17,-4.878714619793722e-17,1.8799415149595156e-17)
    sum a = (7.357005629704538e-17,3.440802330556547e-17,-1.0602846725604741e-16)
    sum e = 2.5920015895955357
    sum de = -3.1848438816761693e-19
Info: CFL hydro = 0.011199151973213558 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011199151973213558 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6251e+04 |  512 |      1 | 3.151e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1279.3757255086543 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.56717350024473, dt = 0.011199151973213558 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.73 us    (0.9%)
   patch tree reduce : 1022.00 ns (0.3%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 682.00 ns  (0.2%)
   LB compute        : 384.73 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.81 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5318241347069857e-17,-4.8533930780553236e-17,1.7824608976313438e-17)
    sum a = (-1.297399687683054e-17,9.327987601087662e-18,-3.83248120738866e-17)
    sum e = 2.5920015915921097
    sum de = 1.094366567852556e-18
Info: CFL hydro = 0.011202707543168154 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011202707543168154 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6843e+04 |  512 |      1 | 3.040e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1326.2550220192047 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.578372652217944, dt = 0.011202707543168154 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.80 us    (1.0%)
   patch tree reduce : 761.00 ns  (0.2%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 512.00 ns  (0.1%)
   LB compute        : 373.95 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.475619094085337e-17,-4.8460015297444035e-17,1.7675314337162186e-17)
    sum a = (-6.764218091898089e-17,-6.584479055743442e-17,5.354701057558309e-17)
    sum e = 2.592001593360079
    sum de = -9.520650327138336e-19
Info: CFL hydro = 0.011207168710960775 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011207168710960775 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6558e+04 |  512 |      1 | 3.092e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1304.2189972186086 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.589575359761113, dt = 0.011207168710960775 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.51 us    (0.9%)
   patch tree reduce : 662.00 ns  (0.2%)
   gen split merge   : 520.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 591.00 ns  (0.1%)
   LB compute        : 387.09 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3693564391600327e-17,-4.992881108556446e-17,1.8836006972916543e-17)
    sum a = (5.267466150760125e-17,-6.438111762457899e-17,-4.105895311246055e-17)
    sum e = 2.5920015947914634
    sum de = -5.251604272976662e-20
Info: CFL hydro = 0.011206729538339337 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011206729538339337 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5989e+04 |  512 |      1 | 3.202e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1259.9415694688207 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.600782528472074, dt = 0.011206729538339337 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.99 us    (1.0%)
   patch tree reduce : 532.00 ns  (0.1%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 511.00 ns  (0.1%)
   LB compute        : 393.32 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.78 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.475619094085337e-17,-5.045426966845956e-17,1.7833391013910572e-17)
    sum a = (-1.5561770622118943e-17,1.8814930082683422e-16,-1.4701130937599948e-17)
    sum e = 2.592001595764202
    sum de = -2.574980159653073e-19
Info: CFL hydro = 0.011201841123478133 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011201841123478133 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6601e+04 |  512 |      1 | 3.084e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1308.128281647466 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.611989258010414, dt = 0.011201841123478133 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.63 us    (0.9%)
   patch tree reduce : 1072.00 ns (0.3%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 752.00 ns  (0.2%)
   LB compute        : 376.83 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4340507827922426e-17,-4.7147832513139145e-17,1.77602073672678e-17)
    sum a = (-1.0378904766877861e-17,1.9361611923104927e-16,-3.2212513906282326e-17)
    sum e = 2.5920015962298826
    sum de = -1.3035837058243682e-18
Info: CFL hydro = 0.011197375863794415 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011197375863794415 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6267e+04 |  512 |      1 | 3.148e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1281.219649132546 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.62319109913389, dt = 0.011197375863794415 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.75 us    (1.0%)
   patch tree reduce : 671.00 ns  (0.2%)
   gen split merge   : 532.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 511.00 ns  (0.1%)
   LB compute        : 363.20 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.75 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.422926868502541e-17,-4.493622271159459e-17,1.7362088329531122e-17)
    sum a = (-1.1208075483340463e-17,7.616953942579663e-18,-6.316626909030898e-17)
    sum e = 2.5920015962101597
    sum de = -1.545835128739098e-19
Info: CFL hydro = 0.01119341827509347 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01119341827509347 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6301e+04 |  512 |      1 | 3.141e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1283.365390273984 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.634388474997685, dt = 0.01119341827509347 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.42 us    (0.9%)
   patch tree reduce : 721.00 ns  (0.2%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 611.00 ns  (0.2%)
   LB compute        : 382.11 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.56 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4103392812799845e-17,-4.564903142989518e-17,1.644290172769791e-17)
    sum a = (-1.37640875259859e-16,-2.211390250604628e-17,3.793254772788135e-17)
    sum e = 2.5920015957303173
    sum de = 1.2519146960418559e-18
Info: CFL hydro = 0.011190045356508105 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011190045356508105 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5411e+04 |  512 |      1 | 3.322e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1212.8885524228538 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.64558189327278, dt = 0.011190045356508105 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.09 us    (1.0%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 407.15 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.17995716164854e-17,-4.629817037561656e-17,1.7274267953559796e-17)
    sum a = (-6.14742631799281e-19,1.3549073972149438e-16,-8.981682585174067e-17)
    sum e = 2.592001594848064
    sum de = -1.48908392127306e-18
Info: CFL hydro = 0.011187324987461498 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011187324987461498 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5821e+04 |  512 |      1 | 3.236e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1244.812899929493 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.656771938629287, dt = 0.011187324987461498 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.86 us    (0.9%)
   patch tree reduce : 1302.00 ns (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 412.61 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.254897215810738e-17,-4.370966479386174e-17,1.5608608155970316e-17)
    sum a = (-1.0659051766226391e-16,-1.8003177074121802e-19,-8.2321356762588e-17)
    sum e = 2.5920015936490515
    sum de = -7.928228386300251e-19
Info: CFL hydro = 0.011185314766205986 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011185314766205986 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6553e+04 |  512 |      1 | 3.093e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1302.0371179931894 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.667959263616748, dt = 0.011185314766205986 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.80 us    (1.0%)
   patch tree reduce : 1182.00 ns (0.3%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.2%)
   LB compute        : 384.60 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.74 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0810128713875125e-17,-4.444442860615516e-17,1.4800660697034118e-17)
    sum a = (1.0444184579683214e-16,-1.5024602655760998e-17,-5.229922940032383e-17)
    sum e = 2.592001592239334
    sum de = 3.6761229910836635e-19
Info: CFL hydro = 0.011184060803752787 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011184060803752787 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7273e+04 |  512 |      1 | 2.964e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1358.4573909372043 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.679144578382953, dt = 0.011184060803752787 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.54 us    (0.9%)
   patch tree reduce : 922.00 ns  (0.2%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 581.00 ns  (0.2%)
   LB compute        : 364.84 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.46 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3295445353863647e-17,-4.4763509305517645e-17,1.4358631471311778e-17)
    sum a = (2.98882012889079e-18,3.917081502907704e-17,7.519839243484705e-17)
    sum e = 2.5920015907382385
    sum de = 9.097133853511186e-19
Info: CFL hydro = 0.011183597183203692 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011183597183203692 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7213e+04 |  512 |      1 | 2.974e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1353.6060325856272 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.690328639186706, dt = 0.011183597183203692 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.17 us    (1.1%)
   patch tree reduce : 1032.00 ns (0.3%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 511.00 ns  (0.1%)
   LB compute        : 364.53 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 2.67 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.278315982736425e-17,-4.395409817364859e-17,1.5974526389184174e-17)
    sum a = (-2.756388867153348e-16,-3.2519885222181964e-17,-2.245567013586802e-17)
    sum e = 2.5920015892686776
    sum de = -8.74138001566438e-19
Info: CFL hydro = 0.011183945098390593 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011183945098390593 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7393e+04 |  512 |      1 | 2.944e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1367.7046174070206 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.70151223636991, dt = 0.011183945098390593 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.90 us    (1.1%)
   patch tree reduce : 751.00 ns  (0.2%)
   gen split merge   : 612.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 821.00 ns  (0.2%)
   LB compute        : 357.84 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 2.46 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486328125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8216500276855305e-17,-4.477595052544692e-17,1.5002647561768168e-17)
    sum a = (-1.4185332596061695e-16,1.6912301637264647e-16,-3.097717395095234e-17)
    sum e = 2.5920015879489906
    sum de = 2.0328790734103208e-20
Info: CFL hydro = 0.011185112577569711 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011185112577569711 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7156e+04 |  512 |      1 | 2.984e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1349.1292227288204 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.712696181468303, dt = 0.011185112577569711 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.01 us    (1.0%)
   patch tree reduce : 1242.00 ns (0.3%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 691.00 ns  (0.2%)
   LB compute        : 369.11 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.478515625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.730316836675351e-17,-4.1690527982987666e-17,1.4605992196964345e-17)
    sum a = (-3.298533321482999e-17,-3.597708068958649e-17,3.495836432831911e-17)
    sum e = 2.592001586884061
    sum de = 5.963111948670274e-19
Info: CFL hydro = 0.01118709409848038 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01118709409848038 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7280e+04 |  512 |      1 | 2.963e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1359.0143697549397 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.723881294045874, dt = 0.01118709409848038 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.25 us    (0.9%)
   patch tree reduce : 962.00 ns  (0.3%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 501.00 ns  (0.1%)
   LB compute        : 362.95 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.67 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.478515625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7511009923218986e-17,-4.3138100513581686e-17,1.5396375580706277e-17)
    sum a = (-2.3969107948440537e-17,-1.0762240707992698e-16,-7.666718822296747e-17)
    sum e = 2.592001586158011
    sum de = 1.111307226797642e-18
Info: CFL hydro = 0.011189870750199317 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011189870750199317 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7365e+04 |  512 |      1 | 2.948e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1365.8999234535602 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.735068388144356, dt = 0.011189870750199317 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.75 us    (1.0%)
   patch tree reduce : 962.00 ns  (0.3%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 511.00 ns  (0.1%)
   LB compute        : 354.61 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.71 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.478515625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.718607453212508e-17,-4.477448685251406e-17,1.412444380205491e-17)
    sum a = (-1.6147825264434257e-16,6.689717139615748e-17,1.1679524535013198e-16)
    sum e = 2.592001585828791
    sum de = 8.91078660511524e-19
Info: CFL hydro = 0.011193410266506042 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011193410266506042 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7459e+04 |  512 |      1 | 2.933e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1373.6763183302671 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.746258258894557, dt = 0.011193410266506042 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (0.8%)
   patch tree reduce : 591.00 ns  (0.2%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 351.00 ns  (0.1%)
   LB compute        : 356.50 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 2.33 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.478515625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.468026647107658e-17,-4.334813757944644e-17,1.6422410306637936e-17)
    sum a = (6.126349427759692e-17,-8.019463999114906e-17,-1.4231584660739927e-16)
    sum e = 2.5920015859244017
    sum de = -2.642742795433417e-19
Info: CFL hydro = 0.01119766768687475 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01119766768687475 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7435e+04 |  512 |      1 | 2.937e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1372.1644168101839 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.757451669161064, dt = 0.01119766768687475 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.70 us    (1.0%)
   patch tree reduce : 932.00 ns  (0.2%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 591.00 ns  (0.2%)
   LB compute        : 374.66 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.73 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.478515625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.662548779884145e-17,-4.4978669226647396e-17,1.3376506933365783e-17)
    sum a = (-1.4137324123864035e-16,1.5747510717298295e-16,4.1609294135214194e-17)
    sum e = 2.592001586441442
    sum de = 3.1509625637859973e-19
Info: CFL hydro = 0.011202586009893583 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011202586009893583 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6541e+04 |  512 |      1 | 3.095e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1302.3659656801321 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.76864933684794, dt = 0.011202586009893583 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.49 us    (0.9%)
   patch tree reduce : 701.00 ns  (0.2%)
   gen split merge   : 530.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 511.00 ns  (0.1%)
   LB compute        : 363.61 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.59 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.478515625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.394989367758172e-17,-4.1733706334506904e-17,1.4900190456468288e-17)
    sum a = (-2.5549874715924404e-17,-9.469085671814926e-17,-6.583015382810587e-17)
    sum e = 2.592001587345876
    sum de = 5.793705359219414e-19
Info: CFL hydro = 0.011208096943198947 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011208096943198947 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5930e+04 |  512 |      1 | 3.214e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1254.788755842954 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.779851922857834, dt = 0.011208096943198947 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.77 us    (0.9%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 395.94 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4361185771714096e-17,-4.435221721138527e-17,1.3575566452234123e-17)
    sum a = (8.166124026987021e-17,-4.3495968545664845e-17,7.784398126098325e-17)
    sum e = 2.5920015885759384
    sum de = 5.21772295508649e-19
Info: CFL hydro = 0.011214122272392006 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011214122272392006 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6835e+04 |  512 |      1 | 3.041e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1326.746383463512 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.791060019801034, dt = 0.011214122272392006 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.67 us    (0.9%)
   patch tree reduce : 1212.00 ns (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 671.00 ns  (0.2%)
   LB compute        : 393.46 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.573557465566535e-17,-4.4461260844882997e-17,1.5233907885159327e-17)
    sum a = (7.907932121631323e-17,2.5864564396488322e-17,5.1573979462093964e-17)
    sum e = 2.5920015900475297
    sum de = -7.284483346386983e-19
Info: CFL hydro = 0.011217453596010686 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011217453596010686 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5898e+04 |  512 |      1 | 3.220e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1253.5664007665946 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.802274142073426, dt = 0.011217453596010686 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.17 us   (2.4%)
   patch tree reduce : 1594.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 394.00 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.655669517099724e-17,-4.3657704404745366e-17,1.5724238317665894e-17)
    sum a = (-5.4922863132467194e-17,-1.5256448448325298e-16,3.9923142916564735e-17)
    sum e = 2.5920015916423376
    sum de = -3.2864878353466853e-19
Info: CFL hydro = 0.011214091226674314 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011214091226674314 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6156e+04 |  512 |      1 | 3.169e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1274.2983794680333 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.813491595669436, dt = 0.011214091226674314 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.56 us    (0.9%)
   patch tree reduce : 601.00 ns  (0.2%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 491.00 ns  (0.1%)
   LB compute        : 366.94 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.65 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5248171569024486e-17,-4.6454783379432094e-17,1.6082838186215475e-17)
    sum a = (1.734803706937571e-16,-1.1577506531593172e-16,6.750459566329248e-18)
    sum e = 2.59200159322513
    sum de = -5.759824041329242e-19
Info: CFL hydro = 0.011211394605747299 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011211394605747299 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6015e+04 |  512 |      1 | 3.197e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1262.7908731247612 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.82470568689611, dt = 0.011211394605747299 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.05 us    (0.8%)
   patch tree reduce : 1272.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 463.33 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.850777119049353e-17,-4.75269238027487e-17,1.6025754941834113e-17)
    sum a = (-6.694839994880741e-17,-9.497773661298892e-17,5.872841275789131e-17)
    sum e = 2.5920015947279333
    sum de = 5.353248226647178e-19
Info: CFL hydro = 0.011209388646367951 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011209388646367951 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5780e+04 |  512 |      1 | 3.245e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1243.955612886927 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.835917081501858, dt = 0.011209388646367951 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.67 us    (0.9%)
   patch tree reduce : 952.00 ns  (0.2%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 581.00 ns  (0.1%)
   LB compute        : 400.29 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.71 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.640740053184599e-17,-4.862833768472241e-17,1.687907626168883e-17)
    sum a = (-7.963551693079829e-17,1.6817162896629046e-16,-4.2259164917402e-17)
    sum e = 2.5920015960532448
    sum de = -5.929230630780102e-19
Info: CFL hydro = 0.011208092125265343 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011208092125265343 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6074e+04 |  512 |      1 | 3.185e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1266.914912364259 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.847126470148226, dt = 0.011208092125265343 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.89 us    (0.9%)
   patch tree reduce : 871.00 ns  (0.2%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 418.78 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.529208175701015e-17,-4.540240254070904e-17,1.570960158833734e-17)
    sum a = (2.642222378390624e-17,-8.884494702432466e-19,-1.147519579358658e-17)
    sum e = 2.592001597119582
    sum de = 1.1756817307889689e-18
Info: CFL hydro = 0.011207517221462926 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011207517221462926 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6015e+04 |  512 |      1 | 3.197e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1262.1175795571976 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.85833456227349, dt = 0.011207517221462926 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.08 us    (1.0%)
   patch tree reduce : 962.00 ns  (0.2%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 751.00 ns  (0.2%)
   LB compute        : 378.27 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 2.81 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6354708306263194e-17,-4.61196022778082e-17,1.5762293813920135e-17)
    sum a = (-2.1726761015306018e-17,-4.2733394947647165e-17,5.1199279191282975e-18)
    sum e = 2.5920015978673128
    sum de = 1.0113573390216346e-18
Info: CFL hydro = 0.011207669403484413 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011207669403484413 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6253e+04 |  512 |      1 | 3.150e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1280.8027150444689 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.869542079494956, dt = 0.011207669403484413 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (0.9%)
   patch tree reduce : 621.00 ns  (0.2%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 532.00 ns  (0.1%)
   LB compute        : 362.09 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 2.48 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5766311787255314e-17,-4.6910717498016564e-17,1.5910124780138535e-17)
    sum a = (1.992937065375955e-17,5.005175961192432e-17,1.4729818927083915e-16)
    sum e = 2.592001598262502
    sum de = 3.4728350837426314e-19
Info: CFL hydro = 0.011208548235334724 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011208548235334724 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6179e+04 |  512 |      1 | 3.165e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1274.9624583485659 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.88074974889844, dt = 0.011208548235334724 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.36 us    (1.1%)
   patch tree reduce : 1313.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 375.67 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (13.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.626396058442616e-17,-4.59029786837456e-17,1.8418860187052742e-17)
    sum a = (-3.168266430458866e-17,9.034374810756862e-17,-1.0080022753988782e-16)
    sum e = 2.59200159829893
    sum de = -5.912289971835016e-19
Info: CFL hydro = 0.011210146093140166 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011210146093140166 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5979e+04 |  512 |      1 | 3.204e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1259.318462649908 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.891958297133776, dt = 0.011210146093140166 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.79 us    (0.9%)
   patch tree reduce : 1032.00 ns (0.2%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 772.00 ns  (0.2%)
   LB compute        : 420.21 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5587743689446946e-17,-4.458786855357499e-17,1.5910124780138535e-17)
    sum a = (-7.523791160403414e-17,-3.6252251200963314e-17,9.360773874783624e-17)
    sum e = 2.592001597997505
    sum de = -1.904130065427667e-18
Info: CFL hydro = 0.011212448577491084 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011212448577491084 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6434e+04 |  512 |      1 | 3.115e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1295.3687618718393 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.903168443226917, dt = 0.011212448577491084 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.44 us    (0.9%)
   patch tree reduce : 592.00 ns  (0.2%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 661.00 ns  (0.2%)
   LB compute        : 368.56 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4422660034894025e-17,-4.579247137731501e-17,1.7902183641754778e-17)
    sum a = (1.2150754035746002e-16,-8.255115341304631e-18,4.826754230677355e-17)
    sum e = 2.592001597403712
    sum de = -3.8963515573697816e-19
Info: CFL hydro = 0.011215435082757512 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011215435082757512 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6413e+04 |  512 |      1 | 3.120e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1293.951223247693 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.91438089180441, dt = 0.011215435082757512 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.41 us    (0.9%)
   patch tree reduce : 732.00 ns  (0.2%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 681.00 ns  (0.2%)
   LB compute        : 371.41 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 2.87 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7289995310357816e-17,-4.570977385660868e-17,1.833982184867855e-17)
    sum a = (1.4136445920104323e-16,1.3205257200221698e-17,-2.250836236145082e-17)
    sum e = 2.592001596584149
    sum de = 4.3473966017826965e-19
Info: CFL hydro = 0.011219079131636793 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011219079131636793 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6418e+04 |  512 |      1 | 3.119e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1294.689656673867 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.925596326887167, dt = 0.011219079131636793 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.09 us    (1.0%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 751.00 ns  (0.2%)
   LB compute        : 409.00 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8503380171694964e-17,-4.561463511597308e-17,1.771922452514785e-17)
    sum a = (1.1858531734701416e-16,5.691345832115058e-17,-6.590041012888292e-17)
    sum e = 2.5920015956207836
    sum de = -1.2970192004831474e-19
Info: CFL hydro = 0.011223348904060331 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011223348904060331 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6878e+04 |  512 |      1 | 3.034e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1331.3744188362239 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.936815406018802, dt = 0.011223348904060331 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.08 us    (1.0%)
   patch tree reduce : 1292.00 ns (0.3%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 691.00 ns  (0.2%)
   LB compute        : 378.38 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9847031924056253e-17,-4.4666906891949184e-17,1.6675625724021925e-17)
    sum a = (1.2166049417894343e-17,8.90205877762673e-17,6.143328033780814e-17)
    sum e = 2.592001594603985
    sum de = 1.627150291675511e-18
Info: CFL hydro = 0.011228207811777689 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011228207811777689 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6401e+04 |  512 |      1 | 3.122e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1294.2763796015097 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.948038754922862, dt = 0.011228207811777689 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (1.1%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 413.37 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9519169187096637e-17,-4.353548771485194e-17,1.8028059513980342e-17)
    sum a = (-8.92313566785985e-17,1.9964498804148077e-17,-1.3209648219020265e-16)
    sum e = 2.5920015936249245
    sum de = 1.915141493741973e-18
Info: CFL hydro = 0.01123361468093714 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01123361468093714 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6657e+04 |  512 |      1 | 3.074e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1315.0782858828948 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.95926696273464, dt = 0.01123361468093714 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.60 us    (0.9%)
   patch tree reduce : 1142.00 ns (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 393.31 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.73 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7914983652687085e-17,-4.356842035584119e-17,1.5514933088267568e-17)
    sum a = (-7.088275279232281e-17,5.919093340467362e-17,-6.587113667022581e-17)
    sum e = 2.5920015927688422
    sum de = 4.734914175151539e-19
Info: CFL hydro = 0.011239503874309598 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011239503874309598 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.7028e+04 |  512 |      1 | 3.007e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1344.9890651327469 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.970500577415578, dt = 0.011239503874309598 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.59 us    (0.9%)
   patch tree reduce : 732.00 ns  (0.2%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 702.00 ns  (0.2%)
   LB compute        : 397.76 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 2.95 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7231448393043597e-17,-4.277291411683426e-17,1.5176824640777965e-17)
    sum a = (-8.667871108369863e-17,-1.330010320627073e-16,7.15267688827792e-17)
    sum e = 2.5920015921084945
    sum de = 6.14945919706622e-19
Info: CFL hydro = 0.011238718389392045 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011238718389392045 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6925e+04 |  512 |      1 | 3.025e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1337.5593161549962 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.98174008128989, dt = 0.011238718389392045 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.57 us    (0.9%)
   patch tree reduce : 1002.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 742.00 ns  (0.2%)
   LB compute        : 378.74 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.77 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.616150347912628e-17,-4.5387033974914056e-17,1.6640497573633396e-17)
    sum a = (-1.7370870367128254e-17,3.200174500395114e-17,-6.953031900236439e-17)
    sum e = 2.5920015916598373
    sum de = 1.6263032587282567e-19
Info: CFL hydro = 0.011236900166890794 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011236900166890794 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6152e+04 |  512 |      1 | 3.170e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1276.3370741201054 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.992978799679282, dt = 0.0070212003207181795 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.08 us    (1.0%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1053.00 ns (0.3%)
   LB compute        : 391.55 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6389836456651725e-17,-4.432294375272816e-17,1.5411012310034834e-17)
    sum a = (-1.7044178568514923e-16,-9.903211063699846e-17,1.2409604593921487e-16)
    sum e = 2.592001573009186
    sum de = 5.522654816098038e-19
Info: CFL hydro = 0.011236167166432377 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011236167166432377 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5146e+04 |  512 |      1 | 3.380e-02 | 0.0% |   1.5% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 747.7114688798473 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 2518                                                    [SPH][rank=0]
Info: time since start : 828.032294997 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.1499162558294367 max=0.15008264530223672 delta=0.00016638947280001037
Number of particle pairs: 130816
Distance min=0.124446 max=1.838153 mean=0.800692
---------------- t = 24, dt = 0.011236167166432377 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.85 us    (1.5%)
   patch tree reduce : 1713.00 ns (0.3%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.1%)
   LB compute        : 651.55 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.04 us    (78.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.382548147828901e-17,-4.564610408402947e-17,1.74908915476224e-17)
    sum a = (-5.838298594573742e-17,7.19600160709044e-17,1.406296953887498e-16)
    sum e = 2.5920015913732892
    sum de = -1.2925722775100623e-18
Info: CFL hydro = 0.011235019184094277 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011235019184094277 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4222e+04 |  512 |      1 | 3.600e-02 | 0.1% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1123.6243635312671 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.011236167166434, dt = 0.011235019184094277 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.2%)
   LB compute        : 390.47 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (74.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3939647967051735e-17,-4.40097177450971e-17,1.9117032176024784e-17)
    sum a = (-4.614082553533461e-17,-1.2013241963704236e-16,-3.2212513906282326e-17)
    sum e = 2.592001591729346
    sum de = 7.792703114739563e-19
Info: CFL hydro = 0.01123454216001152 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01123454216001152 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5461e+04 |  512 |      1 | 3.312e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1221.3316339946387 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.02247118635053, dt = 0.01123454216001152 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.2%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 405.67 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (75.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3601539519562126e-17,-4.6423314411375707e-17,1.7732397581543547e-17)
    sum a = (8.331226333813113e-18,-4.5485100061415374e-17,1.3516141331160192e-16)
    sum e = 2.5920015922714232
    sum de = -2.608861477543245e-19
Info: CFL hydro = 0.01123459410410831 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01123459410410831 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5539e+04 |  512 |      1 | 3.295e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1227.4910371851363 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.03370572851054, dt = 0.01123459410410831 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 376.97 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.391476552719319e-17,-4.6549190283601274e-17,2.0227959932062055e-17)
    sum a = (1.1184217614534918e-16,-4.143365338327154e-17,-7.793765632868598e-17)
    sum e = 2.592001593017322
    sum de = 8.639736061993863e-20
Info: CFL hydro = 0.011235174901824733 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011235174901824733 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5265e+04 |  512 |      1 | 3.354e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1205.824204025156 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24.04494032261465, dt = 0.011235174901824733 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 394.99 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470703125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.573411098273249e-17,-4.707903988529494e-17,1.8074897047831717e-17)
    sum a = (7.367544074821097e-17,5.596499826066026e-17,-1.9777148668742584e-17)
    sum e = 2.5920015938994774
    sum de = -3.8285889215894375e-19
Info: CFL hydro = 0.011236047583281528 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011236047583281528 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5181e+04 |  512 |      1 | 3.373e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1199.2719692930266 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.056175497516474, dt = 0.011236047583281528 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.4%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 409.53 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (73.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6369345035591747e-17,-4.5704651001343687e-17,1.82724928937672e-17)
    sum a = (-1.3695294898141695e-16,-6.444259188775892e-17,1.0200043934482928e-16)
    sum e = 2.592001594841875
    sum de = 2.727446090158847e-19
Info: CFL hydro = 0.011234308260089277 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011234308260089277 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4012e+04 |  512 |      1 | 3.654e-02 | 0.0% |   1.4% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1107.0160005580133 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.067411545099755, dt = 0.011234308260089277 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.37 us    (1.1%)
   patch tree reduce : 1292.00 ns (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.2%)
   LB compute        : 383.68 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.385182759108041e-17,-4.7409829968120266e-17,2.0254306044853453e-17)
    sum a = (-7.607586435809389e-17,7.341783431202841e-17,-5.447205186914772e-17)
    sum e = 2.592001595750825
    sum de = -1.8634724839594607e-19
Info: CFL hydro = 0.011233301038759054 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011233301038759054 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5737e+04 |  512 |      1 | 3.253e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1243.119282906641 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24.078645853359845, dt = 0.011233301038759054 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.2%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.3%)
   LB compute        : 405.36 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3237084959281126e-17,-4.575441588106077e-17,1.8805269841326578e-17)
    sum a = (1.6614444195428569e-16,2.019868647340495e-17,-9.915505916335831e-17)
    sum e = 2.5920015965721626
    sum de = -7.487771253728015e-19
Info: CFL hydro = 0.011233025490037763 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011233025490037763 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5662e+04 |  512 |      1 | 3.269e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1237.0821058566796 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.089879154398602, dt = 0.011233025490037763 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.1%)
   patch tree reduce : 1963.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 417.62 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.655669517099724e-17,-4.56548861216266e-17,1.7373797712993966e-17)
    sum a = (9.056037170163122e-17,-6.569549591828316e-17,-7.114621392023679e-17)
    sum e = 2.592001597244646
    sum de = 4.1335207826009857e-19
Info: CFL hydro = 0.011233469753876828 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011233469753876828 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5812e+04 |  512 |      1 | 3.238e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1248.849916803932 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24.10111217988864, dt = 0.011233469753876828 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.1%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.3%)
   LB compute        : 400.16 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.686113914103117e-17,-4.7086358249959217e-17,1.6688798780417623e-17)
    sum a = (-1.2835826151968987e-16,1.0246881468334301e-16,-3.8359940224275134e-17)
    sum e = 2.5920015977225717
    sum de = -8.978549240895584e-20
Info: CFL hydro = 0.01123333253706342 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01123333253706342 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5696e+04 |  512 |      1 | 3.262e-02 | 0.0% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1239.7771700491187 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.112345649642517, dt = 0.01123333253706342 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.2%)
   patch tree reduce : 1964.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 393.37 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.424994662881708e-17,-4.478107338071191e-17,1.6662452667626226e-17)
    sum a = (1.0756239648967991e-16,2.2788216626212777e-16,3.769250536689306e-17)
    sum e = 2.5920015979719255
    sum de = -4.3198680309969317e-19
Info: CFL hydro = 0.011231637593717238 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011231637593717238 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5308e+04 |  512 |      1 | 3.345e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1209.055380971862 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24.12357898217958, dt = 0.011231637593717238 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.5%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 389.44 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.667671635149139e-17,-4.154635619910141e-17,1.7438199322039605e-17)
    sum a = (-3.4285074779205614e-17,3.3740588448183395e-17,3.650985763714587e-17)
    sum e = 2.5920015979824576
    sum de = 1.7194768829262297e-18
Info: CFL hydro = 0.011230063443971627 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011230063443971627 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5806e+04 |  512 |      1 | 3.239e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1248.2653264799906 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.134810619773297, dt = 0.011230063443971627 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 402.64 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.15 us    (74.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5505778005207045e-17,-4.2414314248284676e-17,1.768995106649074e-17)
    sum a = (-3.1094267785580774e-17,3.505496674188757e-17,1.4067653292260118e-16)
    sum e = 2.59200159778195
    sum de = -6.039344913923161e-19
Info: CFL hydro = 0.011228639295755788 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011228639295755788 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5304e+04 |  512 |      1 | 3.346e-02 | 0.1% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1208.433495726189 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24.14604068321727, dt = 0.011228639295755788 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.1%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1233.00 ns (0.3%)
   LB compute        : 413.91 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.528329971941302e-17,-4.191666545111383e-17,2.0072810601179382e-17)
    sum a = (2.370564682052656e-17,3.161533534967731e-18,-2.530397766320469e-17)
    sum e = 2.592001597408654
    sum de = 2.956144985917508e-19
Info: CFL hydro = 0.011226982217123475 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011226982217123475 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5700e+04 |  512 |      1 | 3.261e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1239.5048096646246 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.157269322513024, dt = 0.011226982217123475 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.4%)
   patch tree reduce : 1653.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        : 398.47 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (74.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.59243884640037e-17,-4.202644092107799e-17,1.8562300134472575e-17)
    sum a = (1.2105746093060699e-16,-3.4621719553762365e-17,-6.687814364803035e-17)
    sum e = 2.592001596914795
    sum de = -2.244637310223896e-20
Info: CFL hydro = 0.011225045426707244 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011225045426707244 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5886e+04 |  512 |      1 | 3.223e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1254.0625642110952 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.168496304730148, dt = 0.011225045426707244 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.2%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.2%)
   LB compute        : 394.94 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (73.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7651522524773107e-17,-4.2799260229625655e-17,1.7725079216879268e-17)
    sum a = (-7.149749542412209e-17,-6.4492356767476e-17,-1.9742020518354052e-17)
    sum e = 2.592001596366742
    sum de = -8.618560238312506e-20
Info: CFL hydro = 0.011223305257267568 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011223305257267568 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5768e+04 |  512 |      1 | 3.247e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1244.5245004381866 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.179721350156854, dt = 0.011223305257267568 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (0.4%)
   patch tree reduce : 1883.00 ns (0.2%)
   gen split merge   : 742.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.1%)
   LB compute        : 1072.89 us (98.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 us    (75.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.58716962384209e-17,-4.367014562467464e-17,1.793584811921045e-17)
    sum a = (-7.154433295797347e-17,8.260238196569624e-17,5.866401114884567e-18)
    sum e = 2.5920015958394336
    sum de = -6.50838940846523e-19
Info: CFL hydro = 0.01122178440068893 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01122178440068893 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5424e+04 |  512 |      1 | 3.319e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1217.198467085362 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24.19094465541412, dt = 0.01122178440068893 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.2%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 408.74 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (74.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474609375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.508424020054468e-17,-4.196350298496521e-17,1.800903176585322e-17)
    sum a = (-5.1170005732625865e-18,1.3058597172349584e-16,6.647416991856225e-17)
    sum e = 2.592001595404688
    sum de = 3.9725845226226686e-19
Info: CFL hydro = 0.011220504410520186 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011220504410520186 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5696e+04 |  512 |      1 | 3.262e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1238.4342540024797 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.20216643981481, dt = 0.011220504410520186 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.2%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 396.78 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5529196772132733e-17,-4.0060728172253147e-17,1.9165333382809014e-17)
    sum a = (6.344436694755152e-17,-4.8140202761615124e-17,-1.3776089644035316e-17)
    sum e = 2.5920015951271758
    sum de = 1.6178329292557136e-19
Info: CFL hydro = 0.011219485562449052 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011219485562449052 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5591e+04 |  512 |      1 | 3.284e-02 | 0.1% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1230.0130607761091 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.21338694422533, dt = 0.011219485562449052 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.2%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 394.20 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.666207962216284e-17,-4.1707360221715506e-17,1.8348603886275682e-17)
    sum a = (-5.931095458516778e-17,-8.246040569120927e-17,5.937828354007912e-17)
    sum e = 2.5920015950588815
    sum de = 7.504711912673101e-19
Info: CFL hydro = 0.011218746433528532 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011218746433528532 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4674e+04 |  512 |      1 | 3.489e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1157.5698420548192 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.22460642978778, dt = 0.011218746433528532 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1923.00 ns (0.5%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 396.36 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.62 us    (74.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.507838550881326e-17,-4.250945298892028e-17,1.95663797664114e-17)
    sum a = (-6.886288414498232e-17,-2.3812494944625005e-17,-3.492177250499773e-17)
    sum e = 2.5920015952341164
    sum de = 1.1460355776350684e-18
Info: CFL hydro = 0.01121830375504868 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01121830375504868 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5447e+04 |  512 |      1 | 3.315e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1218.5047066866346 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.235825176221308, dt = 0.01121830375504868 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.23 us    (1.1%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 681.00 ns  (0.2%)
   LB compute        : 383.06 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 2.95 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.419432705736858e-17,-4.282121532361849e-17,1.860913766832395e-17)
    sum a = (-1.514162330674279e-16,-6.199093972522607e-17,4.381724475442661e-17)
    sum e = 2.592001595666599
    sum de = 5.437951521372608e-19
Info: CFL hydro = 0.011218172234104049 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011218172234104049 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5594e+04 |  512 |      1 | 3.283e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1230.0689611681514 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.247043479976355, dt = 0.011218172234104049 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 382.53 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2080783342325333e-17,-4.3677463989338916e-17,1.9408303089663014e-17)
    sum a = (1.323409155699895e-16,5.702177011818188e-17,6.615289370980048e-17)
    sum e = 2.5920015963477603
    sum de = 2.202285662861181e-19
Info: CFL hydro = 0.011218364282836985 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011218364282836985 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5262e+04 |  512 |      1 | 3.355e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1203.8268221622905 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.25826165221046, dt = 0.011218364282836985 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.3%)
   patch tree reduce : 1953.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 387.18 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.521304341863596e-17,-4.237772242496329e-17,2.0368472533616176e-17)
    sum a = (-2.788004202503025e-17,4.0653515710059593e-17,6.935760559628745e-17)
    sum e = 2.5920015972468944
    sum de = -1.1401063470042883e-18
Info: CFL hydro = 0.011218889822122467 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011218889822122467 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5631e+04 |  512 |      1 | 3.276e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1232.9526560495674 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.269480016493297, dt = 0.011218889822122467 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (1.1%)
   patch tree reduce : 1353.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 396.28 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4083087914471565e-17,-4.179518059768683e-17,2.106225350378965e-17)
    sum a = (9.85051883811705e-19,7.265818805987645e-17,-3.566385468195543e-17)
    sum e = 2.592001598313681
    sum de = -1.7279472123987727e-19
Info: CFL hydro = 0.011219756105424406 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011219756105424406 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5570e+04 |  512 |      1 | 3.288e-02 | 0.1% |   1.9% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1228.2423509058083 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.28069890631542, dt = 0.011219756105424406 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (1.4%)
   patch tree reduce : 1903.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1031.00 ns (0.2%)
   LB compute        : 435.99 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.79 us    (74.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.415041686938291e-17,-4.1053098420729125e-17,1.9961571458282368e-17)
    sum a = (-1.8025132168114632e-17,2.122911221813517e-17,1.026825109315399e-16)
    sum e = 2.5920015994816032
    sum de = -7.775762455794477e-19
Info: CFL hydro = 0.011220967656819987 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011220967656819987 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.4702e+04 |  512 |      1 | 3.482e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1159.8620534612883 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.291918662420844, dt = 0.011220967656819987 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.5%)
   patch tree reduce : 1854.00 ns (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 388.08 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.73 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4039177726485905e-17,-4.119946571401467e-17,2.1820436083008766e-17)
    sum a = (5.040889580754104e-18,-1.5145355672721572e-17,8.441880007536983e-17)
    sum e = 2.592001600673145
    sum de = -6.962610826430349e-19
Info: CFL hydro = 0.011222525553595595 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011222525553595595 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5043e+04 |  512 |      1 | 3.403e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1186.8826914572662 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.303139630077663, dt = 0.011222525553595595 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.2%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.2%)
   LB compute        : 435.79 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.47 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3945502658783154e-17,-4.148341826298863e-17,2.2792314910424772e-17)
    sum a = (4.270997618072148e-18,-1.6675625724021925e-17,-5.434324865105644e-17)
    sum e = 2.5920016018058445
    sum de = -2.879912020664621e-19
Info: CFL hydro = 0.011224145057378494 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011224145057378494 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5020e+04 |  512 |      1 | 3.409e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1185.1918039673028 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.314362155631258, dt = 0.011224145057378494 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 372.81 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (60.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.41738356363086e-17,-4.177908019542542e-17,2.1354988090360738e-17)
    sum a = (1.9373760408447627e-16,3.04004868154073e-17,4.469471667767344e-17)
    sum e = 2.5920016027973998
    sum de = -9.232659125071874e-19
Info: CFL hydro = 0.011226065233609037 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011226065233609037 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5596e+04 |  512 |      1 | 3.283e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1230.8296386054183 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.325586300688638, dt = 0.011226065233609037 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.1%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 1062.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.2%)
   LB compute        : 411.78 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.753150134427896e-17,-4.1205320405746095e-17,2.258740069982501e-17)
    sum a = (4.131948689450882e-17,4.1685405127722676e-17,1.5743266065793014e-17)
    sum e = 2.5920016035771107
    sum de = 1.7076184216646695e-18
Info: CFL hydro = 0.011228288807230783 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011228288807230783 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5434e+04 |  512 |      1 | 3.317e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1218.2762698260105 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.336812365922246, dt = 0.011228288807230783 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.04 us    (1.0%)
   patch tree reduce : 1262.00 ns (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 383.12 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.710118150201946e-17,-4.0529103510766884e-17,2.248787094039084e-17)
    sum a = (-6.45187028802674e-17,7.947524474465062e-17,-9.28729749355428e-17)
    sum e = 2.5920016040872835
    sum de = -6.742382260144231e-19
Info: CFL hydro = 0.01122847532616817 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01122847532616817 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5414e+04 |  512 |      1 | 3.322e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1216.9188489058938 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.348040654729477, dt = 0.01122847532616817 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 386.11 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.57370383285982e-17,-3.9422566773528176e-17,2.0828065834532782e-17)
    sum a = (-2.3067485421801592e-18,5.126221712739576e-17,-9.344673472522214e-17)
    sum e = 2.5920016042750493
    sum de = 8.419507495707745e-19
Info: CFL hydro = 0.011227575838926265 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011227575838926265 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5290e+04 |  512 |      1 | 3.349e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1207.182437841146 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24.359269130055644, dt = 0.011227575838926265 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (1.1%)
   patch tree reduce : 2.10 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 380.99 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6009281494109314e-17,-3.9025911408724354e-17,1.9680546255174124e-17)
    sum a = (-7.829479252430271e-17,4.532263236586842e-17,-1.5713992607135908e-17)
    sum e = 2.592001604131715
    sum de = 6.2087515033740215e-19
Info: CFL hydro = 0.01122732627338997 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01122732627338997 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5764e+04 |  512 |      1 | 3.248e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1244.497089284929 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24.37049670589457, dt = 0.01122732627338997 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.25 us    (1.0%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 391.88 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.487054395234779e-17,-3.848874344236641e-17,2.006695590944796e-17)
    sum a = (-3.5614089802238344e-17,-2.895730530361185e-17,-1.1281990966449661e-16)
    sum e = 2.5920016036788183
    sum de = 3.5914196963582334e-19
Info: CFL hydro = 0.01122772804997731 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01122772804997731 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5668e+04 |  512 |      1 | 3.268e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1236.8384276796319 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.38172403216796, dt = 0.01122772804997731 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.2%)
   patch tree reduce : 1333.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1183.00 ns (0.3%)
   LB compute        : 399.88 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.451633510259677e-17,-3.9301081920101176e-17,1.8290056968961465e-17)
    sum a = (-4.2095233548922194e-17,-5.271857169558691e-17,-2.2400050564419514e-17)
    sum e = 2.5920016029516204
    sum de = 1.15619997300212e-18
Info: CFL hydro = 0.01122877512141195 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.01122877512141195 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5958e+04 |  512 |      1 | 3.208e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1259.7965347873785 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.392951760217937, dt = 0.01122877512141195 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.98 us    (1.0%)
   patch tree reduce : 1293.00 ns (0.3%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 701.00 ns  (0.2%)
   LB compute        : 399.81 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.482421875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.408894260620299e-17,-4.007975592038027e-17,1.86501205104439e-17)
    sum a = (-2.773689481219699e-16,1.3342696088616824e-16,-1.7130828006139963e-17)
    sum e = 2.5920016020071412
    sum de = -3.4897757426877174e-19
Info: CFL hydro = 0.011228641302204752 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011228641302204752 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6018e+04 |  512 |      1 | 3.196e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1264.637827072259 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24.40418053533935, dt = 0.011228641302204752 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.38 us    (1.1%)
   patch tree reduce : 1132.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 398.55 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9627667506859634e-17,-3.7699823731557334e-17,1.8395441420127057e-17)
    sum a = (1.2899349557254912e-16,-5.2111147428451907e-17,-9.626869613976741e-17)
    sum e = 2.5920016009104665
    sum de = -6.998609726688657e-19
Info: CFL hydro = 0.011224707896790887 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011224707896790887 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5906e+04 |  512 |      1 | 3.219e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1255.7906131103873 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.415409176641553, dt = 0.011224707896790887 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.03 us    (1.0%)
   patch tree reduce : 792.00 ns  (0.2%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 390.48 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.340979836535807e-17,-3.893516368688732e-17,1.6928841141405914e-17)
    sum a = (-9.546953071842835e-17,-1.6519890923966108e-16,1.348335505746423e-16)
    sum e = 2.592001599736485
    sum de = -1.315653925322742e-18
Info: CFL hydro = 0.011221475593408251 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011221475593408251 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5934e+04 |  512 |      1 | 3.213e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1257.5543037639754 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.426633884538344, dt = 0.011221475593408251 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.2%)
   patch tree reduce : 1122.00 ns (0.3%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.2%)
   LB compute        : 381.98 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (72.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.09654645674895e-17,-4.158002067655708e-17,1.9630781375457042e-17)
    sum a = (1.0288010677747538e-16,-1.1307312508188062e-16,-1.1605755419197283e-16)
    sum e = 2.5920015986066165
    sum de = -8.745615180400651e-19
Info: CFL hydro = 0.011218983025143858 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011218983025143858 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6482e+04 |  512 |      1 | 3.106e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1300.417285841779 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24.437855360131753, dt = 0.011218983025143858 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.15 us    (1.0%)
   patch tree reduce : 1072.00 ns (0.3%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 404.95 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3193174771295466e-17,-4.250945298892028e-17,1.707813578055717e-17)
    sum a = (1.4906630617372851e-16,1.3096945403190397e-17,1.1764417565118812e-16)
    sum e = 2.592001597613218
    sum de = 1.2400562347802957e-18
Info: CFL hydro = 0.011217258861926795 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011217258861926795 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5851e+04 |  512 |      1 | 3.230e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1250.3793672206543 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.449074343156898, dt = 0.011217258861926795 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.2%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 408.28 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.521597076450167e-17,-4.1613685154012755e-17,1.970396502209981e-17)
    sum a = (-8.119579227722218e-17,4.761913519751859e-17,5.154470600343686e-17)
    sum e = 2.5920015968418166
    sum de = -6.047815243395704e-19
Info: CFL hydro = 0.011216321065126425 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011216321065126425 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5697e+04 |  512 |      1 | 3.262e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1238.0139081568625 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.460291602018824, dt = 0.011216321065126425 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.1%)
   patch tree reduce : 2.13 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 424.39 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.43 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.297655117723286e-17,-4.1034070672602004e-17,1.9933761672558116e-17)
    sum a = (1.973506807192299e-16,-6.49358496661312e-17,-1.1693575795168608e-16)
    sum e = 2.5920015963628744
    sum de = -2.6325784000663655e-18
Info: CFL hydro = 0.011216177302886729 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011216177302886729 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5502e+04 |  512 |      1 | 3.303e-02 | 0.0% |   1.8% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1222.5916166403517 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.47150792308395, dt = 0.011216177302886729 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.4%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 389.42 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6767464073328427e-17,-4.239821384602327e-17,1.773825227327497e-17)
    sum a = (-5.6058673328363e-17,9.521046060931294e-17,-4.4507366542267943e-17)
    sum e = 2.5920015962262943
    sum de = 8.843023969334896e-19
Info: CFL hydro = 0.011216824918056435 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011216824918056435 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.5982e+04 |  512 |      1 | 3.204e-02 | 0.0% |   1.7% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1260.3908209326717 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.48272410038684, dt = 0.011216824918056435 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.1%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 402.58 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4724176659062245e-17,-4.02100228114044e-17,1.742356259271105e-17)
    sum a = (-5.091239929644331e-17,-1.658341432925203e-17,1.4171281335906282e-16)
    sum e = 2.5920015964578753
    sum de = 5.522654816098038e-19
Info: CFL hydro = 0.011218251178129083 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011218251178129083 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6364e+04 |  512 |      1 | 3.129e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1290.6399529381129 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.493940925304894, dt = 0.006059074695105693 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 512 min = 512                              [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 512 min = 512                         [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 512
    max = 512
    avg = 512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.2%)
   patch tree reduce : 1734.00 ns (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 402.87 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490234375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.445193349355113e-17,-4.1012115578609174e-17,1.936146555581164e-17)
    sum a = (-2.7692691889624753e-17,3.3319050643521033e-17,1.5072318393372085e-16)
    sum e = 2.592001577069342
    sum de = 1.018133602599669e-18
Info: CFL hydro = 0.011219599959792924 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.011219599959792924 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.6112e+04 |  512 |      1 | 3.178e-02 | 0.0% |   1.6% 0.0% |     1.00 GB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 686.4054169100756 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 2563                                                    [SPH][rank=0]
Info: time since start : 830.5207748280001 (s)                                        [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
hpart min=0.1499219904317448 max=0.1500735327270618 delta=0.0001515422953169976
Number of particle pairs: 130816
Distance min=0.120958 max=1.835447 mean=0.800721

Convert PNG sequence to Image sequence in mpl#

234 import matplotlib.animation as animation
235 from shamrock.utils.plot import show_image_sequence
236
237 render_gif = True
238
239
240 # If the animation is not returned only a static image will be shown in the doc
241 glob_str = os.path.join(dump_folder, f"{sim_name}_*.png")
242 ani = show_image_sequence(glob_str, render_gif=render_gif)
243
244 if render_gif and shamrock.sys.world_rank() == 0:
245     # To save the animation using Pillow as a gif
246     # writer = animation.PillowWriter(fps=15, metadata=dict(artist="Me"), bitrate=1800)
247     # ani.save("scatter.gif", writer=writer)
248
249     # Show the animation
250     plt.show()

Total running time of the script: (2 minutes 18.890 seconds)

Estimated memory usage: 152 MB

Gallery generated by Sphinx-Gallery